diff options
author | mkanat%bugzilla.org <> | 2009-12-13 23:13:23 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-12-13 23:13:23 +0100 |
commit | 28f6d6593ebd0d0e9d1d01e8de701a68c82854e6 (patch) | |
tree | 957d446725afaec7f98b2a11c0a9a257bbe05645 /Bugzilla/Install | |
parent | b82b431228907463af9cefce2caebd3a2e12693b (diff) | |
download | bugzilla-28f6d6593ebd0d0e9d1d01e8de701a68c82854e6.tar.gz bugzilla-28f6d6593ebd0d0e9d1d01e8de701a68c82854e6.tar.xz |
Fix a compile error in Bugzilla::Install::DB from the last checkin.
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/DB.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 0d117bc12..414731fbe 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -459,7 +459,7 @@ sub update_table_definitions { _move_data_nomail_into_db(); # The products table lacked sensible defaults. - if ($dbh->bz_column_info('products', 'milestoneurl') { + if ($dbh->bz_column_info('products', 'milestoneurl')) { $dbh->bz_alter_column('products', 'milestoneurl', {TYPE => 'TINYTEXT', NOTNULL => 1, DEFAULT => "''"}); } |