Add products table
This commit is contained in:
parent
94875d6ec5
commit
31518d028d
1 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue