1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +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

@@ -12,7 +12,7 @@ CREATE TABLE polls (
poll_comment tinyint(1) unsigned NOT NULL default '1',
poll_allow_multiple tinyint(1) unsigned NOT NULL default '0',
poll_result_type tinyint(2) unsigned NOT NULL default '0',
poll_vote_userclass tinyint(3) unsigned NOT NULL default '0',
poll_vote_userclass smallint(5) unsigned NOT NULL default '0',
poll_storage_method tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (poll_id)
) TYPE=MyISAM;