Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DROP TABLE IF EXISTS `themes`;
- CREATE TABLE IF NOT EXISTS `themes` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
- `theme` tinytext NOT NULL,
- `up` int(11) NOT NULL DEFAULT '0',
- `down` int(11) NOT NULL DEFAULT '0',
- `time` int(11) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB AUTO_INCREMENT=888889 DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement