> i'd love to help, but i have no idea on how to
> start migrating the DB, nor if there is any
> documentation about that. i checked already
> several times.

I'm sure it's in the MailingList archive, but perhaps hard to find.
You need sqlite (i.e. sqlite command line tool for v2 db) and sqlite3
(i.e. the same for v3 db).

# always back up...
cp trac.db trac.db.orig
# dump the DB (v2) into a portable archive file
sqlite trac.db .dump > trac.sql
# remove the exising DB file
rm trac.db
# create a new DB (v3) and reload it with the archive file
sqlite3 trac.db ".read trac.sql"

HTH,
Manu

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to