Created
January 29, 2015 18:03
-
-
Save ramainen/849214d3f349280cb34f to your computer and use it in GitHub Desktop.
pages.sql
This file contains 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 TABLE `pages` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`url` text, | |
`text` text, | |
`title` text, | |
`page_id` int(11) DEFAULT NULL, | |
`template` varchar(255) DEFAULT NULL, | |
`type` varchar(255) DEFAULT NULL, | |
`multi_domain` varchar(255) DEFAULT NULL, | |
`created_at` datetime DEFAULT NULL, | |
`updated_at` datetime DEFAULT NULL, | |
`sort` int(11) DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment