Edgewall Software

Changes between Version 23 and Version 24 of TracUpgrade


Ignore:
Timestamp:
Nov 11, 2005, 2:25:02 AM (19 years ago)
Author:
Joe <svn@…>
Comment:

Add instructions for converting from SQLite to PostgreSQL

Legend:

Unmodified
Added
Removed
Modified
  • TracUpgrade

    v23 v24  
    8585After testing that the conversion was successful, the `trac2.db` file can be deleted. For more information on the SQLite upgrade see http://www.sqlite.org/version3.html.
    8686
     87If you want to switch from SQLite to PostgreSQL after upgrading to 0.9, first dump the sqlite3 database, and after creating the Postgres database execute the dump output. For example:
     88{{{
     89 $ sqlite trac.db .dump > trac.dmp
     90 $ createdb tracdb
     91 $ psql -f trac.dmp tracdb
     92}}}
     93
     94Then make sure you have [2529] of admin.py and do a resync.
     95
    8796== From 0.7.x to 0.8 ==
    8897