Am 2014-11-14 um 18:05 schrieb kcrisman:
>
> Per the recent discussion I will not batch modify the milestone on the
> currently-open tickets.
>
>
> Thank you.
>
> Did we end up discovering what the secret sauce was for doing it on the database
> directly?
If the database schema at
http://trac.sagemath.org/wiki/DBSchema is accurate,
update ticket set milestone='sage-6.5' where milestone='sage-6.4' and status !=
'closed';
could be the trick.
Before trying that, I'd like to see what
select id, summary, milestone, status from ticket where milestone='sage-6.4'
and status != 'closed'
actually gives.
However, the above lines are hardly secret sauce ...
Regards, CH