summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-06-26 18:41:41 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-06-26 18:41:41 +0200
commitc988473afb34914f8fb47d5b49711ccd6ec3fdbd (patch)
treec1c848c0097da8f10202c4a8b9303ed68ffb665a /Bugzilla/Install
parent5b3ea4d476084d47c99e3d2e9d409fea84c16831 (diff)
downloadbugzilla-c988473afb34914f8fb47d5b49711ccd6ec3fdbd.tar.gz
bugzilla-c988473afb34914f8fb47d5b49711ccd6ec3fdbd.tar.xz
Bug 762288 - Change bugs_activity.removed to match data type of bugs_activity.added
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Install')
-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 ef2b41e7d..ba656a769 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -673,6 +673,11 @@ sub update_table_definitions {
# 2012-04-15 Frank@Frank-Becker.de - Bug 740536
$dbh->bz_add_index('audit_log', 'audit_log_class_idx', ['class', 'at_time']);
+ # 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 #
################################################################