Fix dropping of temp tables on SQLite and PG.
[lhc/web/wiklou.git] / tests / phpunit / tests / MediaWikiTestCaseSchemaTest.sql
index e5ef5c6..43e8e9b 100644 (file)
@@ -5,9 +5,9 @@ CREATE TABLE /*_*/MediaWikiTestCaseTestTable (
 ) /*$wgDBTableOptions*/;
 
 CREATE TABLE /*_*/imagelinks (
-  il_from int(10) unsigned NOT NULL DEFAULT 0,
-  il_from_namespace int(11) NOT NULL DEFAULT 0,
-  il_to varbinary(255) NOT NULL DEFAULT '',
+  il_from int NOT NULL DEFAULT 0,
+  il_from_namespace int NOT NULL DEFAULT 0,
+  il_to varchar(255) NOT NULL DEFAULT '',
   il_frobniz varchar(255) NOT NULL DEFAULT 'FROB',
   PRIMARY KEY (il_from,il_to)
 ) /*$wgDBTableOptions*/;