aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/DB.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-09-06 22:45:51 +0000
committermkanat%bugzilla.org <>2009-09-06 22:45:51 +0000
commit841b5d3961f31277c424a4432fc51f0ac4bf093f (patch)
treebd54b8b6bf308f7f33840d6a06d668ea722a16ef /Bugzilla/Install/DB.pm
parent283d5785c782e3a79eb371cd6a223d19205bd175 (diff)
downloadbugs-841b5d3961f31277c424a4432fc51f0ac4bf093f.tar
bugs-841b5d3961f31277c424a4432fc51f0ac4bf093f.tar.gz
bugs-841b5d3961f31277c424a4432fc51f0ac4bf093f.tar.bz2
bugs-841b5d3961f31277c424a4432fc51f0ac4bf093f.tar.xz
bugs-841b5d3961f31277c424a4432fc51f0ac4bf093f.zip
Bug 176002: Move duplicate statistics into the db
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/Install/DB.pm')
-rw-r--r--Bugzilla/Install/DB.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index dd4b2fe1d..d39d1a770 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -574,6 +574,10 @@ sub update_table_definitions {
_convert_disallownew_to_isactive();
+ $dbh->bz_alter_column('bugs_activity', 'added',
+ { TYPE => 'varchar(255)' });
+ $dbh->bz_add_index('bugs_activity', 'bugs_activity_added_idx', ['added']);
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################