diff options
author | Gervase Markham <gerv@gerv.net> | 2012-03-26 13:12:37 +0200 |
---|---|---|
committer | Gervase Markham <gerv@mozilla.org> | 2012-03-26 13:12:37 +0200 |
commit | ef32a98bed6dbe5a1b90963c3b2dd21efcc8f545 (patch) | |
tree | d973807a54cc8c11e189965cd9bfd97e96d757ce /Bugzilla/Install | |
parent | ceb57bc769eeda8520c9daca5796a51718284e71 (diff) | |
download | bugzilla-ef32a98bed6dbe5a1b90963c3b2dd21efcc8f545.tar.gz bugzilla-ef32a98bed6dbe5a1b90963c3b2dd21efcc8f545.tar.xz |
Make Target Milestone field have the same maximum length as Version field. r,a=LpSolit.
https://bugzilla.mozilla.org/show_bug.cgi?id=448551
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/DB.pm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 5bd8fc790..fc8394d91 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -1,4 +1,4 @@ -# This Source Code Form is subject to the terms of the Mozilla Public +11# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # @@ -180,15 +180,6 @@ sub update_table_definitions { _populate_milestones_table(); - # 2000-03-22 Changed the default value for target_milestone to be "---" - # (which is still not quite correct, but much better than what it was - # doing), and made the size of the value field in the milestones table match - # the size of the target_milestone field in the bugs table. - $dbh->bz_alter_column('bugs', 'target_milestone', - {TYPE => 'varchar(20)', NOTNULL => 1, DEFAULT => "'---'"}); - $dbh->bz_alter_column('milestones', 'value', - {TYPE => 'varchar(20)', NOTNULL => 1}); - _add_products_defaultmilestone(); # 2000-03-24 Added unique indexes into the cc and keyword tables. This @@ -666,6 +657,15 @@ sub update_table_definitions { $dbh->bz_add_index('profile_search', 'profile_search_user_id_idx', [qw(user_id)]); } + # 2012-03-23 LpSolit@gmail.com - Bug 448551 + $dbh->bz_alter_column('bugs', 'target_milestone', + {TYPE => 'varchar(64)', NOTNULL => 1, DEFAULT => "'---'"}); + + $dbh->bz_alter_column('milestones', 'value', {TYPE => 'varchar(64)', NOTNULL => 1}); + + $dbh->bz_alter_column('products', 'defaultmilestone', + {TYPE => 'varchar(64)', NOTNULL => 1, DEFAULT => "'---'"}); + ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ |