Bug 662406: Add the "id" column for bug_see_also to Schema.pm.

r=mkanat, a=mkanat (module owner)


git-svn-id: svn://10.0.0.236/trunk@262371 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org
2011-06-06 22:49:30 +00:00
parent f44fd4858b
commit da836d786e
2 changed files with 3 additions and 1 deletions

View File

@@ -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',