From 8d5b6a17b1cfd16f4a7afb192f0d94717a2a2d77 Mon Sep 17 00:00:00 2001 From: x032205 Date: Tue, 26 Aug 2025 20:44:23 -0400 Subject: [PATCH] Remove async from migration --- backend/src/db/migrations/20250815022242_identity-lockouts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/db/migrations/20250815022242_identity-lockouts.ts b/backend/src/db/migrations/20250815022242_identity-lockouts.ts index e6a20f02c..d25ee4f47 100644 --- a/backend/src/db/migrations/20250815022242_identity-lockouts.ts +++ b/backend/src/db/migrations/20250815022242_identity-lockouts.ts @@ -12,7 +12,7 @@ export async function up(knex: Knex): Promise { "lockoutCounterResetSeconds" ); - await knex.schema.alterTable(TableName.IdentityUniversalAuth, async (t) => { + await knex.schema.alterTable(TableName.IdentityUniversalAuth, (t) => { if (!hasLockoutEnabled) { t.boolean("lockoutEnabled").notNullable().defaultTo(true); }