topics.sql 348 B

12345678
  1. CREATE TABLE IF NOT EXISTS `topics` (
  2. `serverId` int(8) NOT NULL DEFAULT '0',
  3. `topic_id` int(8) NOT NULL DEFAULT '0',
  4. `topic_forum_id` int(8) NOT NULL DEFAULT '0',
  5. `topic_name` varchar(255) NOT NULL DEFAULT '',
  6. `topic_ownerid` int(8) NOT NULL DEFAULT '0',
  7. `topic_permissions` int(8) NOT NULL
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;