summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Schema.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-07-23 23:51:44 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-07-23 23:51:44 +0200
commit68e12cdd7ca90594089327e00cf0b7c50e4d0807 (patch)
tree183fc91015b29e41f38a5fe5add07f14bb3fb529 /Bugzilla/DB/Schema.pm
parentd23802e8b18093a2d257b319f02f6e0942326b67 (diff)
downloadbugzilla-68e12cdd7ca90594089327e00cf0b7c50e4d0807.tar.gz
bugzilla-68e12cdd7ca90594089327e00cf0b7c50e4d0807.tar.xz
Bug 764466 - Add a primary key to the profiles_activity table
r=glob, a=LpSolit
Diffstat (limited to 'Bugzilla/DB/Schema.pm')
-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 f8469e66e..09475807c 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -918,6 +918,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',