diff options
author | mkanat%kerio.com <> | 2005-04-05 06:35:03 +0200 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-04-05 06:35:03 +0200 |
commit | 9e7eef7da3b400f0cc22c848cb4968994f37753b (patch) | |
tree | 92d96493b23a0eeb81c3e3eb2ddc8c4959d43f03 | |
parent | adf5bbdb40ef7695a33ec9ca4565182a99b83dea (diff) | |
download | bugzilla-9e7eef7da3b400f0cc22c848cb4968994f37753b.tar.gz bugzilla-9e7eef7da3b400f0cc22c848cb4968994f37753b.tar.xz |
Bug 285345: Need to change MySQL tinyint(1) fields to plain tinyint
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=glob, a=myk
-rwxr-xr-x | checksetup.pl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl index d33d81219..a0a7835ba 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -3948,6 +3948,26 @@ sub CloneEmailEvent { } } +# 2005-03-27: Standardize all boolean fields to plain "tinyint" +if ($dbh->bz_get_field_def('quips', 'approved')->[1] eq 'tinyint(1)') { + $dbh->bz_change_field_type('quips', 'approved', + 'tinyint not null default 1'); + $dbh->bz_change_field_type('series', 'public', + 'tinyint not null default 0'); + $dbh->bz_change_field_type('bug_status', 'isactive', + 'tinyint not null default 1'); + $dbh->bz_change_field_type('rep_platform', 'isactive', + 'tinyint not null default 1'); + $dbh->bz_change_field_type('resolution', 'isactive', + 'tinyint not null default 1'); + $dbh->bz_change_field_type('op_sys', 'isactive', + 'tinyint not null default 1'); + $dbh->bz_change_field_type('bug_severity', 'isactive', + 'tinyint not null default 1'); + $dbh->bz_change_field_type('priority', 'isactive', + 'tinyint not null default 1'); +} + } # END LEGACY CHECKS # If you had to change the --TABLE-- definition in any way, then add your |