Skip to content

Commit

Permalink
fix: increase URL col length for IntegrationProvider
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Krick <[email protected]>
  • Loading branch information
mattkrick committed Oct 24, 2024
1 parent 55c8a80 commit 2c49dce
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import type {Kysely} from 'kysely'

export async function up(db: Kysely<any>): Promise<void> {
await db.schema
.alterTable('IntegrationProvider')
.alterColumn('webhookUrl', (ac) => ac.setDataType('varchar(2056)'))
.alterColumn('serverBaseUrl', (ac) => ac.setDataType('varchar(2056)'))
.execute()
}

export async function down(db: Kysely<any>): Promise<void> {}

0 comments on commit 2c49dce

Please sign in to comment.