fix(db): increase integration kind limit from 16 to 64 characters
This commit is contained in:
@@ -207,7 +207,7 @@ export const integrations = pgTable(
|
||||
export const integrationSecrets = pgTable(
|
||||
"integrationSecret",
|
||||
{
|
||||
kind: varchar({ length: 16 }).$type<IntegrationSecretKind>().notNull(),
|
||||
kind: varchar({ length: 64 }).$type<IntegrationSecretKind>().notNull(),
|
||||
value: text().$type<`${string}.${string}`>().notNull(),
|
||||
updatedAt: timestamp()
|
||||
.$onUpdateFn(() => new Date())
|
||||
|
||||
Reference in New Issue
Block a user