summaryrefslogtreecommitdiff
path: root/model/migrations/migration001.sql
AgeCommit message (Collapse)Author
2024-10-21model: Save int-based schema version in DBxengineering
Ceres v0.4.0 used the `git describe` output as database schema and enforced exactly matching versions between the database and the executable. This turned out to be not flexible enough. It is way easier to version the database separately with a simple integer and require the same database schema version integer between the application and the database. This commit implements this new approach.
2024-10-13Introduce xengineering.eu/ceres/model/migrationsxengineering
This new package is only for database migrations. All data for Ceres should be stored inside the SQLite3 database. Thus migrations can always be executed with functions with the following signature. func(tx *sql.Tx) error Those migration functions should be stored inside the new package. Bigger SQL code can be stored in *.sql files for better syntax highlighting. This code is embedded into the final Go executable by using the embed package.