mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 20:54:22 -06:00
a9faab6b09
* Add global week start option to shared preferences * Add default_week_start to configuration docs * Add week start option to dashboards * Add week start argument to tsdb time range parser * Fix strict check issues * Add tests for week start * Change wording on default_week_start documentation Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> * Update week_start column to be a nullable field Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com> * Update configuration to include browser option * Update WeekStartPicker container selector Co-authored-by: Hugo Häggmark <hugo.haggmark@grafana.com> * Add menuShouldPortal to WeekStartPicker to remove deprecation warning Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com> * Add inputId to WeekStartPicker * Use e2e selector on WeekStartPicker aria-label * Simplify WeekStartPicker onChange condition * Specify value type on WeekStartPicker weekStarts * Remove setWeekStart side effect from reducer * Fix updateLocale failing to reset week start * Store week start as string to handle empty values Co-authored-by: achatterjee-grafana <70489351+achatterjee-grafana@users.noreply.github.com> Co-authored-by: Emil Tullstedt <emil.tullstedt@grafana.com> Co-authored-by: Hugo Häggmark <hugo.haggmark@grafana.com> Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com>
50 lines
2.0 KiB
Go
50 lines
2.0 KiB
Go
package migrations
|
|
|
|
import . "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
|
|
|
func addPreferencesMigrations(mg *Migrator) {
|
|
mg.AddMigration("drop preferences table v2", NewDropTableMigration("preferences"))
|
|
|
|
preferencesV2 := Table{
|
|
Name: "preferences",
|
|
Columns: []*Column{
|
|
{Name: "id", Type: DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
|
{Name: "org_id", Type: DB_BigInt, Nullable: false},
|
|
{Name: "user_id", Type: DB_BigInt, Nullable: false},
|
|
{Name: "version", Type: DB_Int, Nullable: false},
|
|
{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},
|
|
{Name: "created", Type: DB_DateTime, Nullable: false},
|
|
{Name: "updated", Type: DB_DateTime, Nullable: false},
|
|
},
|
|
Indices: []*Index{
|
|
{Cols: []string{"org_id"}},
|
|
{Cols: []string{"user_id"}},
|
|
},
|
|
}
|
|
|
|
mg.AddMigration("drop preferences table v3", NewDropTableMigration("preferences"))
|
|
|
|
// create table
|
|
mg.AddMigration("create preferences table v3", NewAddTableMigration(preferencesV2))
|
|
|
|
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},
|
|
}))
|
|
|
|
mg.AddMigration("Add column team_id in preferences", NewAddColumnMigration(preferencesV2, &Column{
|
|
Name: "team_id", Type: DB_BigInt, Nullable: true,
|
|
}))
|
|
|
|
mg.AddMigration("Update team_id column values in preferences", NewRawSQLMigration("").
|
|
SQLite("UPDATE preferences SET team_id=0 WHERE team_id IS NULL;").
|
|
Postgres("UPDATE preferences SET team_id=0 WHERE team_id IS NULL;").
|
|
Mysql("UPDATE preferences SET team_id=0 WHERE team_id IS NULL;"))
|
|
|
|
mg.AddMigration("Add column week_start in preferences", NewAddColumnMigration(preferencesV2, &Column{
|
|
Name: "week_start", Type: DB_NVarchar, Length: 10, Nullable: true,
|
|
}))
|
|
}
|