summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-09 21:48:56 +0200
committerxengineering <me@xengineering.eu>2024-05-09 21:48:56 +0200
commitca96df29085f9ca6567cd474d0920e48c6410b42 (patch)
tree9e1b1a71e49c992bf7b58ef0b3803e280894cc16 /main.go
parentca19c73b305932a4ef41d31787eabb25f9417a05 (diff)
downloadceres-ca96df29085f9ca6567cd474d0920e48c6410b42.tar
ceres-ca96df29085f9ca6567cd474d0920e48c6410b42.tar.zst
ceres-ca96df29085f9ca6567cd474d0920e48c6410b42.zip
model: Initial database version injection
If the database was empty on startup a metadata table with a key and value row is created. In addition the Ceres executable version is inserted as value under the key 'version'. This allows to detect on not-empty databases which Ceres version was used before which is the starting point to implement migrations.
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 6c123da..4abe9ae 100644
--- a/main.go
+++ b/main.go
@@ -35,7 +35,7 @@ func main() {
model.ConnectDatabase(filepath.Join(storage.Path, "ceres.sqlite3"))
defer model.DisconnectDatabase()
- model.MigrateDatabase()
+ model.MigrateDatabase(version)
model.InjectTestRecipes()
server := NewServer(config.HttpAddress)