mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Added missing common.go
This commit is contained in:
@@ -15,9 +15,8 @@ func addDropAllIndicesMigrations(mg *Migrator, versionSuffix string, table Table
|
||||
|
||||
func addTableIndicesMigrations(mg *Migrator, versionSuffix string, table Table) {
|
||||
for _, index := range table.Indices {
|
||||
migration := NewAddIndexMigration(table, index)
|
||||
migrationId := fmt.Sprintf("create index %s - %s", index.XName(table.Name), versionSuffix)
|
||||
mg.AddMigration(migrationId, migration)
|
||||
mg.AddMigration(migrationId, NewAddIndexMigration(table, index))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user