diff options
author | lpsolit%gmail.com <> | 2007-05-17 22:10:52 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-05-17 22:10:52 +0200 |
commit | f51570e3f8605c2f1ffc927cf6263adc1f560e81 (patch) | |
tree | 9ea1cdabf9f1e9d731cbf8e06b4e11f50f83cd11 /Bugzilla/DB | |
parent | 81a85666a61dd619b7c84878fa26e30d35e62702 (diff) | |
download | bugzilla-f51570e3f8605c2f1ffc927cf6263adc1f560e81.tar.gz bugzilla-f51570e3f8605c2f1ffc927cf6263adc1f560e81.tar.xz |
Bug 377485: Implement editworkflow.cgi - Patch by Frédéric Buclin <LpSolit@gmail.com> r=gerv r=mkanat a=mkanat
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 844f0b0e8..e9205ba0b 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -583,6 +583,7 @@ use constant ABSTRACT_SCHEMA => { sortkey => {TYPE => 'INT2', NOTNULL => 1, DEFAULT => 0}, isactive => {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'TRUE'}, + is_open => {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'TRUE'}, ], INDEXES => [ bug_status_value_idx => {FIELDS => ['value'], @@ -671,6 +672,19 @@ use constant ABSTRACT_SCHEMA => { ], }, + status_workflow => { + FIELDS => [ + # On bug creation, there is no old value. + old_status => {TYPE => 'INT2'}, + new_status => {TYPE => 'INT2', NOTNULL => 1}, + require_comment => {TYPE => 'INT1', NOTNULL => 1, DEFAULT => 0}, + ], + INDEXES => [ + status_workflow_idx => {FIELDS => ['old_status', 'new_status'], + TYPE => 'UNIQUE'}, + ], + }, + # USER INFO # --------- |