[Trac] How to transfer tickets from one environment to another

2010-04-28 Thread mark ardiente
Hi, It would be great if someone could help me transfer tickets from a previous trac environment to another trac environment. My problem is the ticket id wouldn't be unique anymore and reference to it would be broken once it tickets are transferred. Thanks, Mark -- You received this

Re: [Trac] How to transfer tickets from one environment to another

2010-04-28 Thread You Li
Hi Mark, My suggestion is to find the latest ticket id from the new trac environment. And update the old database wherever the ticket id is stored with old_ticket_id+latest_ticket_id from new environment. This shouldn't be hard and maybe less than hundred line of SQL will do it. mark