posts.sql 453 B

123456789101112
  1. -- ---------------------------
  2. -- Table structure for posts
  3. -- ---------------------------
  4. CREATE TABLE IF NOT EXISTS `posts` (
  5. `post_id` int(8) NOT NULL default '0',
  6. `post_owner_name` varchar(255) NOT NULL default '',
  7. `post_ownerid` int(8) NOT NULL default '0',
  8. `post_date` decimal(20,0) NOT NULL default '0',
  9. `post_topic_id` int(8) NOT NULL default '0',
  10. `post_forum_id` int(8) NOT NULL default '0',
  11. `post_txt` text NOT NULL
  12. );