diff options
author | Dylan William Hardison <dylan@hardison.net> | 2015-05-13 20:49:40 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2015-05-13 20:49:40 +0200 |
commit | bdaf609c71b6b75b0a3182f087b3cd3805e5a199 (patch) | |
tree | 762734814085506932cf576cbe2e136fda2e77fe /Bugzilla/DB | |
parent | 0622523114252d26a5710684bfad7b5811173d66 (diff) | |
download | bugzilla-bdaf609c71b6b75b0a3182f087b3cd3805e5a199.tar.gz bugzilla-bdaf609c71b6b75b0a3182f087b3cd3805e5a199.tar.xz |
Backport bug 69267 to BMO (Add the ability to deactivate keywords) - schema only
r=glob
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 0f57f5a11..e400879ca 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -593,6 +593,8 @@ use constant ABSTRACT_SCHEMA => { PRIMARYKEY => 1}, name => {TYPE => 'varchar(64)', NOTNULL => 1}, description => {TYPE => 'MEDIUMTEXT', NOTNULL => 1}, + is_active => {TYPE => 'BOOLEAN', NOTNULL => 1, + DEFAULT => 'TRUE'}, ], INDEXES => [ keyworddefs_name_idx => {FIELDS => ['name'], |