Fix products table status not having default
This commit is contained in:
parent
defbd8de31
commit
6f44e8032f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue