1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Update userclass field size in core plugins

This commit is contained in:
e107steved
2009-09-19 19:05:16 +00:00
parent 4f239954ca
commit 7429730903
5 changed files with 17 additions and 13 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` tinyint(3) unsigned NOT NULL default '0',
`forum_class` smallint(5) unsigned NOT NULL default '0',
`forum_order` int(10) unsigned NOT NULL default '0',
`forum_postclass` tinyint(3) unsigned NOT NULL default '0',
`forum_threadclass` tinyint(3) unsigned NOT NULL default '0',
`forum_postclass` smallint(5) unsigned NOT NULL default '0',
`forum_threadclass` smallint(5) unsigned NOT NULL default '0',
`forum_options` text,
PRIMARY KEY (`forum_id`),
KEY `forum_parent` (`forum_parent`),