AccessControl: Increase limit of LBAC for Datasources rules (#111560)

increase json_data in mysql from TEXT to MEDIUMTEXT (16MB)
This commit is contained in:
Jo 2025-09-26 12:12:26 +01:00 committed by GitHub
parent eb16fa1642
commit f2eab5c3ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -146,4 +146,8 @@ func addDataSourceMigration(mg *Migrator) {
mg.AddMigration("Update secure_json_data column to MediumText", NewRawSQLMigration("").
Mysql("ALTER TABLE data_source MODIFY COLUMN secure_json_data MEDIUMTEXT;"),
)
mg.AddMigration("Update json_data column to MediumText", NewRawSQLMigration("").
Mysql("ALTER TABLE data_source MODIFY COLUMN json_data MEDIUMTEXT;"),
)
}