Archived
1
0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/UPGRADE
Dan Helfman cdd971780e Began work on notebook deletion and subsequent undo/undeletion.
Changed schema slightly to support this.
Added a schema delta file and wrote an UPGRADE doc with info on how to upgrade schemas.
2007-11-17 04:21:48 +00:00

13 lines
508 B
Plaintext

To upgrade the Luminotes database from an earlier version, manually apply each
relevant schema delta file within model/delta/
For instance, if you were upgrading from version 1.0.1 to 1.0.4, you would
apply the following deltas in order:
psql -U luminotes luminotes -f model/delta/1.0.2.sql
psql -U luminotes luminotes -f model/delta/1.0.3.sql
psql -U luminotes luminotes -f model/delta/1.0.4.sql
Any version which does not introduce a schema change does not have a
corresponding schema delta file.