(tx: typeof db)
| 54 | }; |
| 55 | |
| 56 | async function writeSeedMarker(tx: typeof db) { |
| 57 | await upsertSetting(DEFAULT_SITE_SEED_SETTING_KEY, true, tx); |
| 58 | } |
| 59 | |
| 60 | export async function ensureDefaultSitesSeeded(): Promise<SeedSummary> { |
| 61 | return db.transaction(async (tx) => { |
no test coverage detected