Jack Phoenix has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/335737 )

Change subject: FU SQLite
......................................................................

FU SQLite

Change-Id: Ia9cdadf8d83b66d53b14d2104de488bf233b4d3d
---
M picturegame.sql
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/PictureGame 
refs/changes/37/335737/1

diff --git a/picturegame.sql b/picturegame.sql
index efee6fb..39e8313 100644
--- a/picturegame.sql
+++ b/picturegame.sql
@@ -1,6 +1,6 @@
 -- Required tables for the PictureGame extension
 CREATE TABLE /*_*/picturegame_images (
-  `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY,
+  `id` int(10) unsigned NOT NULL PRIMARY KEY auto_increment,
   -- Both of these were originally varchar(64)
   `img1` varchar(255) NOT NULL default '',
   `img2` varchar(255) NOT NULL default '',
@@ -26,7 +26,7 @@
   `picid` int(10) unsigned NOT NULL default '0',
   `userid` int(5) default NULL,
   `imgpicked` int(1) unsigned NOT NULL default '0',
-  `id` int(10) unsigned NOT NULL auto_increment PRIMARY KEY,
+  `id` int(10) unsigned NOT NULL PRIMARY KEY auto_increment,
   `username` varchar(255) default NULL,
   `vote_date` datetime default NULL
 ) /*$wgDBTableOptions*/;

-- 
To view, visit https://gerrit.wikimedia.org/r/335737
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia9cdadf8d83b66d53b14d2104de488bf233b4d3d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/PictureGame
Gerrit-Branch: master
Gerrit-Owner: Jack Phoenix <j...@countervandalism.net>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to