Fri 09 Sep 2005 09:59:58 AM UTC, comment #3:
[pcphsft15] /home/mroy/svdev/update > cat 1.0.6/new_status_default_values.sql | grep "In Progress"
INSERT INTO bugs_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,9,'In Progress','This item is currently being worked on',70,'A');
INSERT INTO patch_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,9,'In Progress','This item is currently being worked on',70,'A');
INSERT INTO support_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,8,'In Progress','This item is currently being worked on',70,'A');
INSERT INTO task_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,9,'In Progress','This item is currently being worked on',70,'A');
Hum, that's correct, I missed this third line. We'll we really need to repackage that.
In the meantime, run
UPDATE support_field_value SET value_id='9' WHERE group_id='100' AND value='In Progress';
|
Fri 09 Sep 2005 09:14:11 AM UTC, comment #2:
Nope:
~/savane/update$ grep -r "In Progress" .
[...]
./1.0.6/new_status_default_values.sql:INSERT INTO support_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,8,'In Progress','This item is currently being worked on',70,'A');
It's 8.
|