Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
DEFAULT => '0'},
onemailperbug => {TYPE => 'BOOLEAN', NOTNULL => 1,
DEFAULT => 'FALSE'},
- title => {TYPE => 'varchar(128)', NOTNULL => 1},
+ title => {TYPE => 'varchar(128)', NOTNULL => 1,
+ DEFAULT => "''"},
],
INDEXES => [
whine_queries_eventid_idx => ['eventid'],
. " uses 'Other' (capital O).\n";
}
+# Add a DEFAULT to whine_queries stuff so that editwhines.cgi
+# works on PostgreSQL.
+$dbh->bz_alter_column('whine_queries', 'title', {TYPE => 'varchar(128)',
+ NOTNULL => 1, DEFAULT => "''"});
+
+
# If you had to change the --TABLE-- definition in any way, then add your
# differential change code *** A B O V E *** this comment.
#