Merge "Use a faster 7z command line by default"
[lhc/web/wiklou.git] / maintenance / archives / patch-testrun.sql
index 246dfc9..6699b55 100644 (file)
@@ -12,24 +12,24 @@ drop table if exists /*$wgDBprefix*/testrun;
 
 create table /*$wgDBprefix*/testrun (
   tr_id int not null auto_increment,
-  
-  tr_date binary(14),
+
+  tr_date char(14) binary,
   tr_mw_version blob,
   tr_php_version blob,
   tr_db_version blob,
   tr_uname blob,
-  
+
   primary key (tr_id)
 ) engine=InnoDB;
 
 create table /*$wgDBprefix*/testitem (
   ti_run int not null,
-  ti_name varbinary(255),
+  ti_name varchar(255),
   ti_success bool,
-  
+
   unique key (ti_run, ti_name),
   key (ti_run, ti_success),
-  
+
   foreign key (ti_run) references /*$wgDBprefix*/testrun(tr_id)
     on delete cascade
 ) engine=InnoDB;