This commit is contained in:
mobius
2015-01-01 20:02:50 +00:00
parent eeae660458
commit a6a3718849
17894 changed files with 2818932 additions and 0 deletions

10
trunk/dist/sql/community/comments.sql vendored Normal file
View File

@@ -0,0 +1,10 @@
CREATE TABLE IF NOT EXISTS `comments` (
`serverId` int(8) NOT NULL DEFAULT '0',
`comment_id` int(8) NOT NULL DEFAULT '0',
`comment_ownerid` int(8) NOT NULL DEFAULT '0',
`comment_date` decimal(20,0) NOT NULL DEFAULT '0',
`comment_post_id` int(8) NOT NULL DEFAULT '0',
`comment_topic_id` int(8) NOT NULL DEFAULT '0',
`comment_forum_id` int(8) NOT NULL DEFAULT '0',
`comment_txt` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;