From: mkanat%kerio.com <> Date: Wed, 9 Mar 2005 16:13:04 +0000 (+0000) Subject: Bug 285410: Duplicates columns are named incorrectly in the Schema X-Git-Tag: bugzilla-2.19.3~192 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a50b0164aa2b75910118b89950f3ff2de27dcbf1;p=thirdparty%2Fbugzilla.git Bug 285410: Duplicates columns are named incorrectly in the Schema Patch By Max Kanat-Alexander r=justdave, a=justdave --- diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index bf112849f7..3a15a755ed 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -287,8 +287,8 @@ use constant ABSTRACT_SCHEMA => { duplicates => { FIELDS => [ - dup_of => {TYPE => 'INT3', NOTNULL => 1}, - dup => {TYPE => 'INT3', NOTNULL => 1, + dupe_of => {TYPE => 'INT3', NOTNULL => 1}, + dupe => {TYPE => 'INT3', NOTNULL => 1, PRIMARYKEY => 1}, ], },