diff options
author | Edmund Wong <ewong@pw-wspx.org> | 2010-05-07 05:33:25 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-05-07 05:33:25 +0200 |
commit | 2ca283e7bfc85d86ffd5f312bbab89eedcf9929b (patch) | |
tree | 1ced0b54d9a2bd4a3659945ef3ef19978d33b0df /Bugzilla/DB | |
parent | dea4b3337e6c17c9c370dd0fc5a921037a845c46 (diff) | |
download | bugzilla-2ca283e7bfc85d86ffd5f312bbab89eedcf9929b.tar.gz bugzilla-2ca283e7bfc85d86ffd5f312bbab89eedcf9929b.tar.xz |
Bug 463945: Add default values for membercontrol and othercontrol
in group_control_map, and fix their DB type to be correct
r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 8e0458a51..c66f401de 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -1037,8 +1037,10 @@ use constant ABSTRACT_SCHEMA => { DELETE => 'CASCADE'}}, entry => {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'}, - membercontrol => {TYPE => 'BOOLEAN', NOTNULL => 1}, - othercontrol => {TYPE => 'BOOLEAN', NOTNULL => 1}, + membercontrol => {TYPE => 'INT1', NOTNULL => 1, + DEFAULT => CONTROLMAPNA}, + othercontrol => {TYPE => 'INT1', NOTNULL => 1, + DEFAULT => CONTROLMAPNA}, canedit => {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'}, editcomponents => {TYPE => 'BOOLEAN', NOTNULL => 1, |