summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-07-23 23:45:38 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-07-23 23:45:38 +0200
commitbfabb024d429c1ec92a48ab01e528838ab289a56 (patch)
treecba784186a6d385e310d810c2678203b700e1033 /Bugzilla/DB
parent3dce1aa3a9ec8898b0dbcadfc3d7a4bdb5893327 (diff)
downloadbugzilla-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/DB')
-rw-r--r--Bugzilla/DB/Schema.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index 7293d25d8..1ca7d9d7c 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -903,6 +903,8 @@ use constant ABSTRACT_SCHEMA => {
profiles_activity => {
FIELDS => [
+ id => {TYPE => 'MEDIUMSERIAL', NOTNULL => 1,
+ PRIMARYKEY => 1},
userid => {TYPE => 'INT3', NOTNULL => 1,
REFERENCES => {TABLE => 'profiles',
COLUMN => 'userid',