1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-25 08:51:50 +02:00

thread and post migration now working

This commit is contained in:
mcfly
2008-12-20 23:59:00 +00:00
parent 3e6cc88d1c
commit 7dd1c8f61d
4 changed files with 205 additions and 69 deletions

View File

@@ -50,10 +50,10 @@ CREATE TABLE forum_post (
`post_status` tinyint(1) unsigned NOT NULL default '0',
`post_datestamp` int(10) unsigned NOT NULL default '0',
`post_user` int(10) unsigned NOT NULL,
`post_edit_datestamp` int(10) unsigned NOT NULL default '0',
`post_edit_user` int(10) unsigned NOT NULL,
`post_ip` varchar(45) NOT NULL,
`post_user_anon` varchar(30) NULL,
`post_edit_datestamp` int(10) unsigned default NULL,
`post_edit_user` int(10) unsigned default NULL,
`post_ip` varchar(45) default NULL,
`post_user_anon` varchar(30) default NULL,
`post_attachments` text default NULL,
`post_options` text,
PRIMARY KEY (`post_id`),