From 118e1c69057e4e7b6ab3e730d5628b4822ed4c4d Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 15 Oct 2024 21:23:10 +0200 Subject: model: Save int-based schema version in DB 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. --- model/sql/migration001.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 model/sql/migration001.sql (limited to 'model/sql/migration001.sql') diff --git a/model/sql/migration001.sql b/model/sql/migration001.sql new file mode 100644 index 0000000..64c7ee3 --- /dev/null +++ b/model/sql/migration001.sql @@ -0,0 +1,8 @@ +-- Database schema 1 is the first schema with numerical versioning. + +DELETE FROM metadata WHERE key = 'version'; + +INSERT INTO metadata + (key, value) +VALUES + ('schema_version', '2'); -- cgit v1.2.3-70-g09d2