diff options
author | mkanat%bugzilla.org <> | 2007-12-23 12:12:04 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-12-23 12:12:04 +0100 |
commit | 57411366af5e116d6ffbb024a7c093e35851af21 (patch) | |
tree | 4fdb222971b39c3664c3e7508d27d7b0af3273bf /Bugzilla/Install | |
parent | 4ee554d7d2a5a6a6f1e89f253afd9112f360d11e (diff) | |
download | bugzilla-57411366af5e116d6ffbb024a7c093e35851af21.tar.gz bugzilla-57411366af5e116d6ffbb024a7c093e35851af21.tar.xz |
Bug 409593: namedqueries.query_type has the wrong definition in DB::Schema
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/DB.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 43c81d1dd..e9ce742d8 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -521,6 +521,10 @@ sub update_table_definitions { # 2007-09-09 LpSolit@gmail.com - Bug 99215 _fix_attachment_modification_date(); + # This had the wrong definition in DB::Schema. + $dbh->bz_alter_column('namedqueries', 'query_type', + {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 0}); + ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ |