Fix syntax error

This commit is contained in:
Jay Trees 2022-01-17 14:26:09 +01:00
parent 5267e9b2a0
commit c643eb1318

View file

@ -119,7 +119,7 @@ switch ($step) {
$database->query('CREATE TABLE `products` (
`id` int NOT NULL PRIMARY KEY AUTO_INCREMENT,
`wishlist` int NOT NULL,
`url` VARCHAR(255) NOT NULL
`url` VARCHAR(255) NOT NULL,
FOREIGN KEY (`wishlist`)
REFERENCES `wishlists` (id)
ON DELETE CASCADE