Commit 28f6d659 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Fix a compile error in Bugzilla::Install::DB from the last checkin.

parent b82b4312
...@@ -459,7 +459,7 @@ sub update_table_definitions { ...@@ -459,7 +459,7 @@ sub update_table_definitions {
_move_data_nomail_into_db(); _move_data_nomail_into_db();
# The products table lacked sensible defaults. # 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', $dbh->bz_alter_column('products', 'milestoneurl',
{TYPE => 'TINYTEXT', NOTNULL => 1, DEFAULT => "''"}); {TYPE => 'TINYTEXT', NOTNULL => 1, DEFAULT => "''"});
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment