[Trac] Re: Effect of renaming a workflow state?

2020-11-09 Thread RjOllos
On Monday, November 9, 2020 at 2:50:06 PM UTC-8 aiki...@gmail.com wrote: > On Tuesday, November 3, 2020 at 2:53:14 PM UTC-5 RjOllos wrote: > >> On Tuesday, November 3, 2020 at 7:48:27 AM UTC-8 Aikido Guy wrote: >> >>> Alternatively, I see that *[ticket-workflow] *allows *state.label = >>> value

[Trac] Re: Effect of renaming a workflow state?

2020-11-09 Thread Aikido Guy
On Tuesday, November 3, 2020 at 2:53:14 PM UTC-5 RjOllos wrote: > On Tuesday, November 3, 2020 at 7:48:27 AM UTC-8 Aikido Guy wrote: > >> Alternatively, I see that *[ticket-workflow] *allows *state.label = >> value* to be used. Are there any situations where the label is not used? >> It seems li

[Trac] Re: Effect of renaming a workflow state?

2020-11-03 Thread RjOllos
On Tuesday, November 3, 2020 at 7:48:27 AM UTC-8 aiki...@gmail.com wrote: > Alternatively, I see that *[ticket-workflow] *allows *state.label = value* > to be used. Are there any situations where the label is not used? It seems > like using *accepted.label = in_progress* might be the simplest

[Trac] Re: Effect of renaming a workflow state?

2020-11-03 Thread RjOllos
On Tuesday, November 3, 2020 at 6:57:25 AM UTC-8 aiki...@gmail.com wrote: > I may have answered my own question! > > I see inside: > https://trac.edgewall.org/browser/branches/1.4-stable/contrib/workflow/migrate_original_to_basic.py > > > That the following SQL statement will likely be all t

[Trac] Re: Effect of renaming a workflow state?

2020-11-03 Thread Aikido Guy
Alternatively, I see that *[ticket-workflow] *allows *state.label = value* to be used. Are there any situations where the label is not used? It seems like using *accepted.label = in_progress* might be the simplest approach... On Tuesday, November 3, 2020 at 9:57:25 AM UTC-5 Aikido Guy wrote: >

[Trac] Re: Effect of renaming a workflow state?

2020-11-03 Thread Aikido Guy
I may have answered my own question! I see inside: https://trac.edgewall.org/browser/branches/1.4-stable/contrib/workflow/migrate_original_to_basic.py That the following SQL statement will likely be all that I need: *UPDATE ticket SET status = 'accepted' WHERE status = 'assigned'* Can som