Advertisement
Sosowski

Theme Slaughter SQL

Dec 6th, 2012
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.35 KB | None | 0 0
  1. DROP TABLE IF EXISTS `themes`;
  2. CREATE TABLE IF NOT EXISTS `themes` (
  3.   `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  4.   `theme` tinytext NOT NULL,
  5.   `up` int(11) NOT NULL DEFAULT '0',
  6.   `down` int(11) NOT NULL DEFAULT '0',
  7.   `time` int(11) unsigned NOT NULL DEFAULT '0',
  8.   PRIMARY KEY (`id`)
  9. ) ENGINE=InnoDB AUTO_INCREMENT=888889 DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement