2016-03-03 04:08:51 -06:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import . "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
|
|
|
|
|
|
|
func addPreferencesMigrations(mg *Migrator) {
|
2016-03-15 16:49:52 -05:00
|
|
|
mg.AddMigration("drop preferences table v2", NewDropTableMigration("preferences"))
|
|
|
|
|
|
|
|
preferencesV2 := Table{
|
2016-03-03 04:08:51 -06:00
|
|
|
Name: "preferences",
|
|
|
|
Columns: []*Column{
|
|
|
|
{Name: "id", Type: DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
2016-04-05 10:24:08 -05:00
|
|
|
{Name: "org_id", Type: DB_BigInt, Nullable: false},
|
|
|
|
{Name: "user_id", Type: DB_BigInt, Nullable: false},
|
2016-03-14 05:12:52 -05:00
|
|
|
{Name: "version", Type: DB_Int, Nullable: false},
|
2016-04-05 10:24:08 -05:00
|
|
|
{Name: "home_dashboard_id", Type: DB_BigInt, Nullable: false},
|
|
|
|
{Name: "timezone", Type: DB_NVarchar, Length: 50, Nullable: false},
|
|
|
|
{Name: "theme", Type: DB_NVarchar, Length: 20, Nullable: false},
|
2016-03-14 05:12:52 -05:00
|
|
|
{Name: "created", Type: DB_DateTime, Nullable: false},
|
|
|
|
{Name: "updated", Type: DB_DateTime, Nullable: false},
|
2016-03-03 04:08:51 -06:00
|
|
|
},
|
2016-03-15 16:49:52 -05:00
|
|
|
Indices: []*Index{
|
|
|
|
{Cols: []string{"org_id"}},
|
|
|
|
{Cols: []string{"user_id"}},
|
|
|
|
},
|
2016-03-03 04:08:51 -06:00
|
|
|
}
|
|
|
|
|
2016-04-05 10:24:08 -05:00
|
|
|
mg.AddMigration("drop preferences table v3", NewDropTableMigration("preferences"))
|
|
|
|
|
2016-03-03 04:08:51 -06:00
|
|
|
// create table
|
2016-04-05 10:24:08 -05:00
|
|
|
mg.AddMigration("create preferences table v3", NewAddTableMigration(preferencesV2))
|
2017-03-28 07:34:53 -05:00
|
|
|
|
|
|
|
mg.AddMigration("Update preferences table charset", NewTableCharsetMigration("preferences", []*Column{
|
|
|
|
{Name: "timezone", Type: DB_NVarchar, Length: 50, Nullable: false},
|
|
|
|
{Name: "theme", Type: DB_NVarchar, Length: 20, Nullable: false},
|
|
|
|
}))
|
2018-11-12 13:01:53 -06:00
|
|
|
|
|
|
|
mg.AddMigration("Add column team_id in preferences", NewAddColumnMigration(preferencesV2, &Column{
|
|
|
|
Name: "team_id", Type: DB_BigInt, Nullable: true,
|
|
|
|
}))
|
|
|
|
|
2020-11-10 23:21:08 -06:00
|
|
|
mg.AddMigration("Update team_id column values in preferences", NewRawSQLMigration("").
|
|
|
|
SQLite("UPDATE preferences SET team_id=0 WHERE team_id IS NULL;").
|
2018-11-12 13:01:53 -06:00
|
|
|
Postgres("UPDATE preferences SET team_id=0 WHERE team_id IS NULL;").
|
|
|
|
Mysql("UPDATE preferences SET team_id=0 WHERE team_id IS NULL;"))
|
2021-10-18 08:27:14 -05:00
|
|
|
|
|
|
|
mg.AddMigration("Add column week_start in preferences", NewAddColumnMigration(preferencesV2, &Column{
|
|
|
|
Name: "week_start", Type: DB_NVarchar, Length: 10, Nullable: true,
|
|
|
|
}))
|
2016-03-03 04:08:51 -06:00
|
|
|
}
|