summaryrefslogtreecommitdiff
path: root/model/migrations/migration001.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-10-15 21:23:10 +0200
committerxengineering <me@xengineering.eu>2024-10-21 21:34:26 +0200
commit118e1c69057e4e7b6ab3e730d5628b4822ed4c4d (patch)
tree0d4d49c29475715b932e780b976b1379c7aa23d3 /model/migrations/migration001.go
parent1904f50084660ce587a67d49939fd0734fd8a582 (diff)
downloadceres-118e1c69057e4e7b6ab3e730d5628b4822ed4c4d.tar
ceres-118e1c69057e4e7b6ab3e730d5628b4822ed4c4d.tar.zst
ceres-118e1c69057e4e7b6ab3e730d5628b4822ed4c4d.zip
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.
Diffstat (limited to 'model/migrations/migration001.go')
-rw-r--r--model/migrations/migration001.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/model/migrations/migration001.go b/model/migrations/migration001.go
deleted file mode 100644
index 11f062f..0000000
--- a/model/migrations/migration001.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package migrations
-
-import (
- "database/sql"
- _ "embed"
-)
-
-//go:embed migration001.sql
-var migration001sql string
-
-func Migration001(tx *sql.Tx) error {
- _, err := tx.Exec(migration001sql)
-
- return err
-}