Commit 0fa7022e authored by Max Kanat-Alexander's avatar Max Kanat-Alexander

Bug 573454: Make the products.description field be NOT NULL in the

database r=timello, a=mkanat
parent 5feaa134
...@@ -1217,7 +1217,7 @@ use constant ABSTRACT_SCHEMA => { ...@@ -1217,7 +1217,7 @@ use constant ABSTRACT_SCHEMA => {
REFERENCES => {TABLE => 'classifications', REFERENCES => {TABLE => 'classifications',
COLUMN => 'id', COLUMN => 'id',
DELETE => 'CASCADE'}}, DELETE => 'CASCADE'}},
description => {TYPE => 'MEDIUMTEXT'}, description => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
isactive => {TYPE => 'BOOLEAN', NOTNULL => 1, isactive => {TYPE => 'BOOLEAN', NOTNULL => 1,
DEFAULT => 1}, DEFAULT => 1},
defaultmilestone => {TYPE => 'varchar(20)', defaultmilestone => {TYPE => 'varchar(20)',
......
...@@ -616,10 +616,14 @@ sub update_table_definitions { ...@@ -616,10 +616,14 @@ sub update_table_definitions {
$dbh->bz_alter_column('group_control_map', 'othercontrol', $dbh->bz_alter_column('group_control_map', 'othercontrol',
{TYPE => 'INT1', NOTNULL => 1, DEFAULT => CONTROLMAPNA}); {TYPE => 'INT1', NOTNULL => 1, DEFAULT => CONTROLMAPNA});
# Add NOT NULL to some columns that need it, and DEFAULT to
# attachments.ispatch.
$dbh->bz_alter_column('attachments', 'ispatch', $dbh->bz_alter_column('attachments', 'ispatch',
{ TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'}); { TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'});
$dbh->bz_alter_column('keyworddefs', 'description', $dbh->bz_alter_column('keyworddefs', 'description',
{ TYPE => 'MEDIUMTEXT', NOTNULL => 1 }, ''); { TYPE => 'MEDIUMTEXT', NOTNULL => 1 }, '');
$dbh->bz_alter_column('products', 'description',
{ TYPE => 'MEDIUMTEXT', NOTNULL => 1 }, '');
################################################################ ################################################################
# New --TABLE-- changes should go *** A B O V E *** this point # # New --TABLE-- changes should go *** A B O V E *** this point #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment