Skip to content

Commit

Permalink
fix: correct seed.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
Zalk0 committed Nov 27, 2023
1 parent b6a5123 commit d20b2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seed/seed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ CREATE TABLE IF NOT EXISTS `itemsupplements` (
CONSTRAINT `itemsupplements_ibfk_1` FOREIGN KEY (`itemKey`) REFERENCES `items` (`key`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `itemsupplements_ibfk_2` FOREIGN KEY (`supplementKey`) REFERENCES `supplements` (`key`) ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (`itemKey`,`supplementKey`)
);
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `orders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
Expand Down

0 comments on commit d20b2a3

Please sign in to comment.