mirror of https://github.com/grafana/grafana.git
AccessControl: Increase limit of LBAC for Datasources rules (#111560)
increase json_data in mysql from TEXT to MEDIUMTEXT (16MB)
This commit is contained in:
parent
eb16fa1642
commit
f2eab5c3ea
|
@ -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;"),
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue