Add products table

This commit is contained in:
Jay 2021-11-15 14:49:50 +01:00
parent 94875d6ec5
commit 31518d028d

View file

@ -104,6 +104,16 @@ switch ($step) {
PRIMARY KEY (id)
);');
/**
* Products
*/
$database->query('CREATE TABLE `products` (
`id` int NOT NULL AUTO_INCREMENT,
`wishlist` int NOT NULL,
`url` VARCHAR(255) NOT NULL,
PRIMARY KEY (id)
);');
/**
* Options
*/