topic.sql 469 B

12345678910
  1. CREATE TABLE IF NOT EXISTS `topic` (
  2. `topic_id` int(8) NOT NULL DEFAULT '0',
  3. `topic_forum_id` int(8) NOT NULL DEFAULT '0',
  4. `topic_name` varchar(255) NOT NULL DEFAULT '',
  5. `topic_date` bigint(13) unsigned NOT NULL DEFAULT '0',
  6. `topic_ownername` varchar(255) NOT NULL DEFAULT '0',
  7. `topic_ownerid` int(8) NOT NULL DEFAULT '0',
  8. `topic_type` int(8) NOT NULL DEFAULT '0',
  9. `topic_reply` int(8) NOT NULL DEFAULT '0'
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;