summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Schema.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2011-06-07 00:42:33 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2011-06-07 00:42:33 +0200
commit54e2e43559c57f294ba48c92d7b9792d3a97848e (patch)
tree8c4f4b1dfa6c0fece1a470e63d6fdfa418363906 /Bugzilla/DB/Schema.pm
parent4697310074223a52423e118a3474cb2342e5248c (diff)
downloadbugzilla-54e2e43559c57f294ba48c92d7b9792d3a97848e.tar.gz
bugzilla-54e2e43559c57f294ba48c92d7b9792d3a97848e.tar.xz
Bug 662406: Add the "id" column for bug_see_also to Schema.pm.
r=mkanat, a=mkanat (module owner)
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 c5b16b68e..1603dbc4b 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -494,6 +494,8 @@ use constant ABSTRACT_SCHEMA => {
bug_see_also => {
FIELDS => [
+ id => {TYPE => 'MEDIUMSERIAL', NOTNULL => 1,
+ PRIMARYKEY => 1},
bug_id => {TYPE => 'INT3', NOTNULL => 1,
REFERENCES => {TABLE => 'bugs',
COLUMN => 'bug_id',