ignore type error

This commit is contained in:
Philipinho
2025-08-31 12:20:40 -07:00
parent 937386e42b
commit 509622af54
2 changed files with 22 additions and 5 deletions

View File

@ -0,0 +1,17 @@
import { type Kysely } from 'kysely';
export async function up(db: Kysely<any>): Promise<void> {
await db.schema
.alterTable('auth_providers')
.addColumn('is_group_sync_enabled', 'boolean', (col) =>
col.defaultTo(false).notNull(),
)
.execute();
}
export async function down(db: Kysely<any>): Promise<void> {
await db.schema
.alterTable('auth_providers')
.dropColumn('is_group_sync_enabled')
.execute();
}