From 77ca1402ccbe13d74f62b81637a1059393447491 Mon Sep 17 00:00:00 2001 From: grandeljay Date: Sat, 26 Feb 2022 21:52:42 +0100 Subject: [PATCH] Add product type --- src/pages/install.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/install.php b/src/pages/install.php index 2fd385d9..472b0f13 100644 --- a/src/pages/install.php +++ b/src/pages/install.php @@ -140,7 +140,8 @@ switch ($step) { $database->query('CREATE TABLE `wishes` ( `id` int NOT NULL PRIMARY KEY AUTO_INCREMENT, `wishlist` int NOT NULL, - `url` VARCHAR(255) NOT NULL, + `type` VARCHAR(32) NULL DEFAULT NULL, + `url` VARCHAR(255) NULL DEFAULT NULL, `status` VARCHAR(32) NULL DEFAULT NULL, FOREIGN KEY (`wishlist`) REFERENCES `wishlists` (`id`)