adding the forgotten table row to the table schema sql

Bug: 55481
Change-Id: If720850cec32cda933d20f1321002e10aaae36d4
This commit is contained in:
Wikinaut 2013-10-09 23:08:18 +02:00
parent 7555c9f60f
commit e90b945be7
2 changed files with 2 additions and 1 deletions

View file

@ -47,7 +47,7 @@ if( !defined( 'MEDIAWIKI' ) ) {
$wgExtensionCredits['parserhook'][] = array(
'path' => __FILE__,
'name' => 'AJAX Poll',
'version' => '1.85 20130728',
'version' => '1.86 20131009',
'author' => array( 'Dariusz Siedlecki', 'Jack Phoenix', 'Thomas Gries' ),
'descriptionmsg' => 'ajaxpoll-desc',
'url' => 'https://www.mediawiki.org/wiki/Extension:AJAX_Poll',

View file

@ -1,5 +1,6 @@
CREATE TABLE IF NOT EXISTS /*_*/ajaxpoll_info (
`poll_id` varchar(32) NOT NULL PRIMARY KEY default '',
`poll_txt` text,
`poll_show_results_before_voting` TINYINT(1),
`poll_date` datetime default NULL
) /*$wgDBTableOptions*/;