We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0c3ef commit 3562ba0Copy full SHA for 3562ba0
src/scripts/migrate-call.ts
@@ -3,10 +3,10 @@ dotenv.config()
3
4
import { runMigrationsOnTenant } from '@internal/database/migrations'
5
import { getConfig } from '../config'
6
-;(async () => {
+void (async () => {
7
const { databaseURL, dbMigrationFreezeAt } = getConfig()
8
await runMigrationsOnTenant({
9
databaseUrl: databaseURL,
10
upToMigration: dbMigrationFreezeAt,
11
})
12
-})().catch(console.error)
+})()
0 commit comments