X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Farchives%2Fpatch-testrun.sql;h=6699b5546b7b054f67e12372588a1cb5f49c3e59;hb=dcfec00f3b1224081e5192d5cf6d426a3c66029c;hp=8591d81df4598b296d862ace6a501007ee00bfdf;hpb=051e1e76249de4b51cebdc795fe37976141279dd;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/archives/patch-testrun.sql b/maintenance/archives/patch-testrun.sql index 8591d81df4..6699b5546b 100644 --- a/maintenance/archives/patch-testrun.sql +++ b/maintenance/archives/patch-testrun.sql @@ -12,13 +12,13 @@ drop table if exists /*$wgDBprefix*/testrun; create table /*$wgDBprefix*/testrun ( tr_id int not null auto_increment, - + 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; @@ -26,10 +26,10 @@ create table /*$wgDBprefix*/testitem ( ti_run int not null, 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;