Implemented product monking data

This commit is contained in:
Kevin Frantz
2018-07-14 21:58:36 +02:00
parent f51177f703
commit 0ace91c6a7
5 changed files with 153 additions and 23 deletions

View File

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