On Friday 29 June 2007, Brian McCann wrote: > Hi Eli, > > Any idea on where and how to run the sql command in trac in order > to change these values?
This should get you started: sqlite3 db/trac.db ".schema enum" sqlite3 db/trac.db "SELECT * FROM enum WHERE type = 'resolution'" sqlite3 db/trac.db "UPDATE enum SET name = 'blah' WHERE type = 'resolution' AND value = 1" Backups recommended. ;) Eli --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---
