From 66b4c8717eb0a5bf89e3f02b5efab4daa8b9e1d5 Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Sat, 12 Mar 2005 03:08:06 +0000 Subject: Bug 285690: bugs.status_whiteboard, bugs.votes, and bugs.keywords need defaults in the Schema Patch By Max Kanat-Alexander r=Tomas.Kopal, a=myk --- checksetup.pl | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index c82d4a3b4..b2b6cf333 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -3649,6 +3649,12 @@ if (!$dbh->bz_get_field_def('fielddefs', 'obsolete')) { } +$dbh->bz_change_field_type('bugs', 'status_whiteboard', + q{mediumtext not null default ''}); +$dbh->bz_change_field_type('bugs', 'keywords', + q{mediumtext not null default ''}); +$dbh->bz_change_field_type('bugs', 'votes', 'mediumint not null default 0'); + # 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