refactor: add root store (#1153)

This commit is contained in:
Jonas Plum
2025-09-21 11:47:29 +02:00
committed by GitHub
parent d9f759c879
commit 9da90e7cc8
15 changed files with 713 additions and 26 deletions

View File

@@ -27,7 +27,7 @@ func TestSQLMigration_UpAndDown(t *testing.T) {
require.NoError(t, m.up(t.Context(), queries, dir, uploader))
// Table should exist
_, err = queries.WriteDB.Exec("INSERT INTO test_table (name) VALUES ('foo')")
_, err = queries.WriteDB.ExecContext(t.Context(), "INSERT INTO test_table (name) VALUES ('foo')")
require.NoError(t, err)
}