From 066315fea409aad860da7d9c02c4f1a60245fc42 Mon Sep 17 00:00:00 2001 From: Jay Trees Date: Tue, 22 Feb 2022 12:59:25 +0100 Subject: [PATCH] Fix status column missing during install --- src/pages/install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/install.php b/src/pages/install.php index 11ad7c0c..641eff46 100644 --- a/src/pages/install.php +++ b/src/pages/install.php @@ -141,6 +141,7 @@ switch ($step) { `id` int NOT NULL PRIMARY KEY AUTO_INCREMENT, `wishlist` int NOT NULL, `url` VARCHAR(255) NOT NULL, + `status` VARCHAR(32) NOT NULL, FOREIGN KEY (`wishlist`) REFERENCES `wishlists` (`id`) ON DELETE CASCADE