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

Allow signed integer user class fields

This commit is contained in:
e107steved
2010-01-05 21:05:29 +00:00
parent bee4d07b82
commit 89b869cae5
4 changed files with 12 additions and 12 deletions

View File

@@ -11,10 +11,10 @@ CREATE TABLE forum (
`forum_lastpost_user` int(10) unsigned default NULL,
`forum_lastpost_user_anon` varchar(30) default NULL,
`forum_lastpost_info` varchar(40) default NULL,
`forum_class` smallint(5) unsigned NOT NULL default '0',
`forum_class` smallint(5) NOT NULL default '0',
`forum_order` int(10) unsigned NOT NULL default '0',
`forum_postclass` smallint(5) unsigned NOT NULL default '0',
`forum_threadclass` smallint(5) unsigned NOT NULL default '0',
`forum_postclass` smallint(5) NOT NULL default '0',
`forum_threadclass` smallint(5) NOT NULL default '0',
`forum_options` text,
PRIMARY KEY (`forum_id`),
KEY `forum_parent` (`forum_parent`),