Added databases draft

This commit is contained in:
Kevin Frantz 2018-07-14 19:50:09 +02:00
parent f938f70e78
commit a61f5550b7
5 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,5 @@
CREATE TABLE `test_db`.`order` (
`id` INT NOT NULL AUTO_INCREMENT,
`customer` INT NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `id_UNIQUE` (`id` ASC));

View File

@ -0,0 +1,4 @@
CREATE TABLE `test_db`.`order_product` (
`product_id` INT NULL,
`order_id` INT NULL);

View File

@ -0,0 +1,8 @@
CREATE TABLE `test_db`.`product` (
`id` INT NOT NULL,
`name` VARCHAR(45) NULL,
`color` VARCHAR(12) NULL,
`price` INT NULL,
`image` VARCHAR(180) NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `id_UNIQUE` (`id` ASC));

View File

@ -0,0 +1,9 @@
CREATE TABLE `test_db`.`user` (
`id` INT NOT NULL AUTO_INCREMENT,
`name` VARCHAR(45) NULL,
`email` VARCHAR(45) NULL,
`hash` VARCHAR(45) NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `id_UNIQUE` (`id` ASC),
UNIQUE INDEX `email_UNIQUE` (`email` ASC));

0
src/setup/setup.php Normal file
View File