diff options
author | xengineering <me@xengineering.eu> | 2024-05-09 10:02:00 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-09 10:02:00 +0200 |
commit | a2038b0ea35d1466c84e6e04a2e4597fc038815a (patch) | |
tree | fe94c7992dc5f7efb2b8266a5974be2430980cbf /model/recipe_test.go | |
parent | 0ba1a7661a81200db98e40149eef1e39fd22f407 (diff) | |
download | ceres-a2038b0ea35d1466c84e6e04a2e4597fc038815a.tar ceres-a2038b0ea35d1466c84e6e04a2e4597fc038815a.tar.zst ceres-a2038b0ea35d1466c84e6e04a2e4597fc038815a.zip |
Restructure database-related functions
Diffstat (limited to 'model/recipe_test.go')
-rw-r--r-- | model/recipe_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/model/recipe_test.go b/model/recipe_test.go index 74ccfa2..37b43e0 100644 --- a/model/recipe_test.go +++ b/model/recipe_test.go @@ -23,8 +23,9 @@ func TestRecipeCrud(t *testing.T) { storage.Create() } - InitDatabase(filepath.Join(storage.Path, "ceres.sqlite3")) - defer CloseDatabase() + ConnectDatabase(filepath.Join(storage.Path, "ceres.sqlite3")) + defer DisconnectDatabase() + MigrateDatabase() Transaction(func(tx *sql.Tx) error { var original, readback, update, updated, deleted Recipe |