diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-06 02:42:57 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-06 02:42:57 +0200 |
commit | ba4585ae8a1c63a49e40461d2e2efc12bc75c58a (patch) | |
tree | 8dc9797b39e698089785eef1e6a2ca55e094934b /Bugzilla/DB | |
parent | 4e7c28de087834ba8fca4350a01798c1f9732f23 (diff) | |
download | bugzilla-ba4585ae8a1c63a49e40461d2e2efc12bc75c58a.tar.gz bugzilla-ba4585ae8a1c63a49e40461d2e2efc12bc75c58a.tar.xz |
Bug 486292: Change the default workflow to UNCONFIRMED, CONFIRMED,
IN_PROGRESS, RESOLVED, VERIFIED.
r=LpSolit, a=mkanat
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 0791cad98..4837ccc5f 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -1223,7 +1223,7 @@ use constant ABSTRACT_SCHEMA => { defaultmilestone => {TYPE => 'varchar(20)', NOTNULL => 1, DEFAULT => "'---'"}, allows_unconfirmed => {TYPE => 'BOOLEAN', NOTNULL => 1, - DEFAULT => 'FALSE'}, + DEFAULT => 'TRUE'}, ], INDEXES => [ products_name_idx => {FIELDS => ['name'], |