diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-07-23 23:45:38 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-07-23 23:45:38 +0200 |
commit | bfabb024d429c1ec92a48ab01e528838ab289a56 (patch) | |
tree | cba784186a6d385e310d810c2678203b700e1033 /Bugzilla/Install | |
parent | 3dce1aa3a9ec8898b0dbcadfc3d7a4bdb5893327 (diff) | |
download | bugzilla-bfabb024d429c1ec92a48ab01e528838ab289a56.tar.gz bugzilla-bfabb024d429c1ec92a48ab01e528838ab289a56.tar.xz |
Bug 764466 - Add a primary key to the profiles_activity table
r=glob, a=LpSolit
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/DB.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index f516748b9..194ed310b 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -682,6 +682,10 @@ sub update_table_definitions { $dbh->bz_add_column('bugs_activity', 'id', {TYPE => 'MEDIUMSERIAL', NOTNULL => 1, PRIMARYKEY => 1}); + # 2012-06-13 dkl@mozilla.com - Bug 764466 + $dbh->bz_add_column('profiles_activity', 'id', + {TYPE => 'MEDIUMSERIAL', NOTNULL => 1, PRIMARYKEY => 1}); + ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ |