summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-03-12 04:08:06 +0100
committermkanat%kerio.com <>2005-03-12 04:08:06 +0100
commit66b4c8717eb0a5bf89e3f02b5efab4daa8b9e1d5 (patch)
tree16370a69168a746b18fc32355b18f4ae2365cd61 /checksetup.pl
parent9ddbd40c8fc8244e52981a90247c68c06f46ef5b (diff)
downloadbugzilla-66b4c8717eb0a5bf89e3f02b5efab4daa8b9e1d5.tar.gz
bugzilla-66b4c8717eb0a5bf89e3f02b5efab4daa8b9e1d5.tar.xz
Bug 285690: bugs.status_whiteboard, bugs.votes, and bugs.keywords need defaults in the Schema
Patch By Max Kanat-Alexander <mkanat@kerio.com> r=Tomas.Kopal, a=myk
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl6
1 files changed, 6 insertions, 0 deletions
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.
#