Auth: Increase SSO config size limit (#112531)

Increase sso_setting.settings column for MySQL from TEXT to MEDIUMTEXT.
This commit is contained in:
John Troy
2025-10-16 14:02:20 -04:00
committed by GitHub
parent 163a88056e
commit bb08b2deea
@@ -16,4 +16,7 @@ func AddMigration(mg *migrator.Migrator) {
}
mg.AddMigration("create sso_setting table", migrator.NewAddTableMigration(ssoSettingV1))
mg.AddMigration("update settings column to MEDIUMTEXT", migrator.NewRawSQLMigration("").
Mysql("ALTER TABLE sso_setting MODIFY COLUMN settings MEDIUMTEXT NOT NULL;"))
}