Remove async from migration

This commit is contained in:
x032205
2025-08-26 20:44:23 -04:00
parent 8945bc0dc1
commit 8d5b6a17b1

View File

@@ -12,7 +12,7 @@ export async function up(knex: Knex): Promise<void> {
"lockoutCounterResetSeconds"
);
await knex.schema.alterTable(TableName.IdentityUniversalAuth, async (t) => {
await knex.schema.alterTable(TableName.IdentityUniversalAuth, (t) => {
if (!hasLockoutEnabled) {
t.boolean("lockoutEnabled").notNullable().defaultTo(true);
}