Skip to content

Instantly share code, notes, and snippets.

@ramainen
Created January 29, 2015 18:03
Show Gist options
  • Save ramainen/849214d3f349280cb34f to your computer and use it in GitHub Desktop.
Save ramainen/849214d3f349280cb34f to your computer and use it in GitHub Desktop.
pages.sql
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