mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-09-10 03:47:13 +02:00
Implemented product monking data
This commit is contained in:
@@ -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));
|
||||
|
Reference in New Issue
Block a user