mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 15:45:43 -06:00
Merge pull request #11784 from grafana/11754_auth_migration
increase length of auth_id column in user_auth table
This commit is contained in:
commit
2c10f29b0f
@ -21,4 +21,9 @@ func addUserAuthMigrations(mg *Migrator) {
|
||||
mg.AddMigration("create user auth table", NewAddTableMigration(userAuthV1))
|
||||
// add indices
|
||||
addTableIndicesMigrations(mg, "v1", userAuthV1)
|
||||
|
||||
mg.AddMigration("alter user_auth.auth_id to length 255", new(RawSqlMigration).
|
||||
Sqlite("SELECT 0 WHERE 0;").
|
||||
Postgres("ALTER TABLE user_auth ALTER COLUMN auth_id TYPE VARCHAR(255);").
|
||||
Mysql("ALTER TABLE user_auth MODIFY auth_id VARCHAR(255);"))
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user