Skip to content

Commit

Permalink
Increased question filed size in portal_news table
Browse files Browse the repository at this point in the history
Increased the number of available characters for poll questions.
  • Loading branch information
kirirur committed Oct 13, 2014
1 parent b6b92e1 commit 6a89314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stfc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ CREATE TABLE IF NOT EXISTS `portal_news` (
CREATE TABLE IF NOT EXISTS `portal_poll` (
`id` tinyint(3) unsigned NOT NULL auto_increment,
`date` int(10) unsigned NOT NULL default '0',
`question` varchar(100) NOT NULL default '',
`question` varchar(256) NOT NULL default '',
`choice_1` varchar(100) NOT NULL default '',
`choice_2` varchar(100) NOT NULL default '',
`choice_3` varchar(100) NOT NULL default '',
Expand Down

0 comments on commit 6a89314

Please sign in to comment.