summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2007-12-23 07:25:01 +0100
committermkanat%bugzilla.org <>2007-12-23 07:25:01 +0100
commit4ee554d7d2a5a6a6f1e89f253afd9112f360d11e (patch)
treec4abcf196346e84c7a0f52b5cf4a1a8f3fd4e334 /Bugzilla/DB
parentedf97ecb4b942f6ed515d16d381c212668e96513 (diff)
downloadbugzilla-4ee554d7d2a5a6a6f1e89f253afd9112f360d11e.tar.gz
bugzilla-4ee554d7d2a5a6a6f1e89f253afd9112f360d11e.tar.xz
Bug 409463: The flagtypes.description DB format is not the same in an upgraded installation and in a fresh one
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Schema.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm
index 2be64cab3..3d7f56674 100644
--- a/Bugzilla/DB/Schema.pm
+++ b/Bugzilla/DB/Schema.pm
@@ -470,7 +470,7 @@ use constant ABSTRACT_SCHEMA => {
id => {TYPE => 'SMALLSERIAL', NOTNULL => 1,
PRIMARYKEY => 1},
name => {TYPE => 'varchar(50)', NOTNULL => 1},
- description => {TYPE => 'MEDIUMTEXT'},
+ description => {TYPE => 'MEDIUMTEXT', NOTNULL => 1},
cc_list => {TYPE => 'varchar(200)'},
target_type => {TYPE => 'char(1)', NOTNULL => 1,
DEFAULT => "'b'"},