Chronicle 4 branch.

This commit is contained in:
MobiusDev
2017-07-19 21:24:06 +00:00
parent 9a69bec286
commit 3a0bf3539a
13496 changed files with 641683 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
-- ---------------------------
-- Table structure for posts
-- ---------------------------
CREATE TABLE IF NOT EXISTS `posts` (
`post_id` int(8) NOT NULL default '0',
`post_owner_name` varchar(255) NOT NULL default '',
`post_ownerid` int(8) NOT NULL default '0',
`post_date` decimal(20,0) NOT NULL default '0',
`post_topic_id` int(8) NOT NULL default '0',
`post_forum_id` int(8) NOT NULL default '0',
`post_txt` text NOT NULL
);