From af703f64fdcc4f214a9cce5e990907ce4ec8ada8 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 22 Feb 2006 01:38:51 +0000 Subject: Bug 225221: The 'longdescs' table needs a primary key - Patch by Albert Ting r=mkanat a=justdave --- checksetup.pl | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index f88c8bb28..4c1455d45 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -4270,6 +4270,10 @@ $dbh->bz_add_column('fielddefs', 'type', $dbh->bz_add_column('fielddefs', 'custom', { TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE' }); +# 2005-12-07 altlst@sonic.net -- Bug 225221 +$dbh->bz_add_column('longdescs', 'comment_id', + {TYPE => 'MEDIUMSERIAL', NOTNULL => 1, PRIMARYKEY => 1}); + # If you had to change the --TABLE-- definition in any way, then add your # differential change code *** A B O V E *** this comment. # -- cgit v1.2.3-24-g4f1b