summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-07-23 23:23:43 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-07-23 23:23:43 +0200
commit3dce1aa3a9ec8898b0dbcadfc3d7a4bdb5893327 (patch)
tree998857e488f9432be52116f7d8256e29ed90211d /Bugzilla/Install
parent58cfa7b96dd3e480140b258b9dd88b65b772b0a2 (diff)
downloadbugzilla-3dce1aa3a9ec8898b0dbcadfc3d7a4bdb5893327.tar.gz
bugzilla-3dce1aa3a9ec8898b0dbcadfc3d7a4bdb5893327.tar.xz
Bug 764457 - Add a primary key to the bugs_activity table
r=glob, a=LpSolit
Diffstat (limited to 'Bugzilla/Install')
-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 ba656a769..f516748b9 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -678,6 +678,10 @@ sub update_table_definitions {
{ TYPE => 'varchar(255)' });
$dbh->bz_add_index('bugs_activity', 'bugs_activity_removed_idx', ['removed']);
+ # 2012-06-13 dkl@mozilla.com - Bug 764457
+ $dbh->bz_add_column('bugs_activity', 'id',
+ {TYPE => 'MEDIUMSERIAL', NOTNULL => 1, PRIMARYKEY => 1});
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################