diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-10-05 00:15:45 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-05 00:27:29 -0400 |
| commit | e1551113323d5a496b826d7b0265b1be6235f45c (patch) | |
| tree | 08f09cac579c954c782e39d5cd02c7ae72f86374 /src/test/fixtures | |
| parent | b422be184e01b4cc35b9c9a6921379080c24edb3 (diff) | |
Make a backup of the `.hi` database before applying migrations.
This was motivated by Kit and I both independently discovering that sqlite3 will happily partially apply migrations, leaving the DB in a broken state.
Diffstat (limited to 'src/test/fixtures')
| -rw-r--r-- | src/test/fixtures/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fixtures/mod.rs b/src/test/fixtures/mod.rs index c5efa9b..41f7e13 100644 --- a/src/test/fixtures/mod.rs +++ b/src/test/fixtures/mod.rs @@ -11,7 +11,7 @@ pub mod login; pub mod message; pub async fn scratch_app() -> App { - let pool = db::prepare("sqlite::memory:") + let pool = db::prepare("sqlite::memory:", "sqlite::memory:") .await .expect("setting up in-memory sqlite database"); App::from(pool) |
