summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/DB.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-06-26 18:45:58 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-06-26 18:45:58 +0200
commit06feb186d98d718264671e8079ccd01d20935165 (patch)
tree2842e9bcb0c938d4eaf9904edc573c068f5d4964 /Bugzilla/Install/DB.pm
parent5c656675e8a45f1ba6cf57dfdd32a2ef0c9acf85 (diff)
downloadbugzilla-06feb186d98d718264671e8079ccd01d20935165.tar.gz
bugzilla-06feb186d98d718264671e8079ccd01d20935165.tar.xz
Bug 762288 - Change bugs_activity.removed to match data type of bugs_activity.added
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Install/DB.pm')
-rw-r--r--Bugzilla/Install/DB.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index e89e19647..baf9adeed 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -669,6 +669,11 @@ sub update_table_definitions {
$dbh->bz_add_index('profile_search', 'profile_search_user_id_idx', [qw(user_id)]);
}
+ # 2012-06-06 dkl@mozilla.com - Bug 762288
+ $dbh->bz_alter_column('bugs_activity', 'removed',
+ { TYPE => 'varchar(255)' });
+ $dbh->bz_add_index('bugs_activity', 'bugs_activity_removed_idx', ['removed']);
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################