This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/db/customers.sql

20 lines
389 B
SQL

CREATE TABLE "customers" (
"id" INTEGER PRIMARY KEY AUTOINCREMENT,
"lastname" TEXT,
"firstname" TEXT,
"username" TEXT,
"password" TEXT
);
CREATE TABLE "article" (
"id" INTEGER PRIMARY KEY AUTOINCREMENT,
"title" TEXT,
"category" TEXT,
"description" TEXT,
"refArticle" INTEGER,
"sellingPrice" INTEGER,
"maxPurchasePrice" INTEGER,
"maxStock" INTEGER,
"currentStock" INTEGER
);