diff --git a/includes/pages/install.php b/includes/pages/install.php index 9a69fb83..f202341e 100644 --- a/includes/pages/install.php +++ b/includes/pages/install.php @@ -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