mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fixed gofmt checks
This commit is contained in:
@@ -93,13 +93,13 @@ func addDashboardMigration(mg *Migrator) {
|
||||
Postgres("SELECT 0;").
|
||||
Mysql("ALTER TABLE dashboard MODIFY data MEDIUMTEXT;"))
|
||||
|
||||
// add column to store creator of a dashboard
|
||||
mg.AddMigration("Add column created_by", NewAddColumnMigration(dashboardV2, &Column{
|
||||
Name: "created_by", Type: DB_BigInt, Nullable: true,
|
||||
}))
|
||||
// add column to store creator of a dashboard
|
||||
mg.AddMigration("Add column created_by", NewAddColumnMigration(dashboardV2, &Column{
|
||||
Name: "created_by", Type: DB_BigInt, Nullable: true,
|
||||
}))
|
||||
|
||||
// add column to store updater of a dashboard
|
||||
mg.AddMigration("Add column updated_by", NewAddColumnMigration(dashboardV2, &Column{
|
||||
Name: "updated_by", Type: DB_BigInt, Nullable: true,
|
||||
}))
|
||||
// add column to store updater of a dashboard
|
||||
mg.AddMigration("Add column updated_by", NewAddColumnMigration(dashboardV2, &Column{
|
||||
Name: "updated_by", Type: DB_BigInt, Nullable: true,
|
||||
}))
|
||||
}
|
||||
|
||||
@@ -65,7 +65,7 @@ type AddColumnMigration struct {
|
||||
}
|
||||
|
||||
func NewAddColumnMigration(table Table, col *Column) *AddColumnMigration {
|
||||
return &AddColumnMigration{tableName: table.Name, column: col}
|
||||
return &AddColumnMigration{tableName: table.Name, column: col}
|
||||
}
|
||||
|
||||
func (m *AddColumnMigration) Table(tableName string) *AddColumnMigration {
|
||||
|
||||
Reference in New Issue
Block a user