I wanted to add a new Status I went to Administration->Field Values->Status
I then added a new one "WAITING-REPONSE" sortkey 50
But when i go back to an existing bug that status is not there?
Is there something else i need to do?
Thanks
I wanted to add a new Status I went to Administration->Field Values->Status
I then added a new one "WAITING-REPONSE" sortkey 50
But when i go back to an existing bug that status is not there?
Is there something else i need to do?
Thanks
ワークフローに含める必要があります。
管理 > バグ ステータスのワークフロー
techzilla データベースの「bug_status」テーブルに新しいエントリを追加することで、Bugzilla に新しいステータスを追加できます。
例:-
+----+-------------+---------+----------+ | | ID | 値 | ソートキー | アクティブ | +----+-------------+---------+----------+ | | 1 | 未確認 | 100 | 1 | | | 2 | 新しい | 200 | 1 | | | 3 | 割り当て済み | 300 | 1 | | | 4 | 再開 | 400 | 1 | | | 5 | 解決済み | 500 | 1 | | | 6 | 検証済み | 600 | 1 | | | 7 | 閉店 | 700 | 1 | | | 8 | 返信済み | 800 | 1 | +----+-------------+---------+----------+ 8 行セット (0.01 秒)
挿入クエリを使用して、このテーブルに新しいステータスを追加します。
bug_status 値 ('',.......) に挿入します。