20 lines
853 B
MySQL
20 lines
853 B
MySQL
|
-- Place your SQL code here
|
||
|
|
||
|
|
||
|
-- floranet.recipe definition
|
||
|
|
||
|
CREATE OR REPLACE TABLE floranet.`recipe`
|
||
|
(
|
||
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
|
`itemFk` int(11) NOT NULL COMMENT 'Bouquet or plant name',
|
||
|
`elementFk` int(11) NOT NULL COMMENT 'Item detail for bouquet''s composition',
|
||
|
`quantity` int(10) unsigned NOT NULL DEFAULT 1,
|
||
|
`cost` decimal(10,2) NOT NULL DEFAULT 1.00,
|
||
|
PRIMARY KEY (`id`),
|
||
|
KEY `recipe_FK` (`itemFk`),
|
||
|
KEY `recipe_FK_1` (`elementFk`),
|
||
|
CONSTRAINT `recipe_FK` FOREIGN KEY (`itemFk`) REFERENCES `vn`.`item` (`id`) ON UPDATE CASCADE,
|
||
|
CONSTRAINT `recipe_item_FK` FOREIGN KEY (`elementFk`) REFERENCES `vn`.`item` (`id`) ON UPDATE CASCADE
|
||
|
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='Links handmade products with their elements';
|
||
|
|
||
|
DROP TABLE IF EXISTS floranet.`element`;
|