aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/archives/patch-testrun.sql
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/archives/patch-testrun.sql')
-rw-r--r--maintenance/archives/patch-testrun.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/maintenance/archives/patch-testrun.sql b/maintenance/archives/patch-testrun.sql
index 246dfc9fa77d..8591d81df459 100644
--- a/maintenance/archives/patch-testrun.sql
+++ b/maintenance/archives/patch-testrun.sql
@@ -13,7 +13,7 @@ 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,
@@ -24,7 +24,7 @@ create table /*$wgDBprefix*/testrun (
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),