Raz Goren wrote: > I have to change the owner on a bulk of tickets . > > Is it possible and how ?
Not through the web interface, but if you have access to the project you can update it in the database using the sqlite command line tool: $ sqlite3 my_project/db/trac.db SQLite version 3.2.8 sqlite> update ticket set owner = 'new_owner' where owner = 'old_owner'; sqlite> .exit -- Matt Good --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users -~----------~----~----~----~------~----~------~--~---
