This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Create tables -- | |
DROP TABLE IF EXISTS wp_posts; | |
CREATE TABLE wp_posts ( | |
ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
name VARCHAR(255) NOT NULL, | |
post_type VARCHAR(255) NOT NULL DEFAULT 'hso_product', | |
post_status VARCHAR(255) NOT NULL DEFAULT 'publish', | |
menu_order INT NOT NULL DEFAULT 0 | |
); |