This commit is contained in:
10
trunk/dist/sql/community/comments.sql
vendored
Normal file
10
trunk/dist/sql/community/comments.sql
vendored
Normal 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;
|
Reference in New Issue
Block a user