julien.lesommer wrote: > Hi, > > I have trouble with a milestone whose name seem to be cause problem to > trac. > The milestone is visible on the raodmap and with trac-admin milestone > list > but no url seem to be associated with the link provided on the roadmap > which returns > the following message : > Milestone WP3: Large scale impact of eddy forcing and lateral stirring > does not exist. > > I would like to delete this milestone but I just can't provide a valid > name to trac-admin. > > any guess of how I could proceed ?
One option is to update the database directly: (just remember to backup your database before you start) UPDATE milestone SET name='New name' WHERE name LIKE 'WP3%'; UPDATE ticket SET milestone='New name' WHERE milestone LIKE 'WP3%'; btw, how did you manage to create that milestone in the first place? / Jonas --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
