Fix products table status not having default

This commit is contained in:
Jay Trees 2022-02-24 09:39:55 +01:00
parent defbd8de31
commit 6f44e8032f

View file

@ -141,7 +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,
`status` VARCHAR(32) NULL DEFAULT NULL,
FOREIGN KEY (`wishlist`)
REFERENCES `wishlists` (`id`)
ON DELETE CASCADE