2015-03-21 08:53:16 -04:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
|
|
import . "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
|
|
|
|
|
|
|
|
|
func addDashboardSnapshotMigrations(mg *Migrator) {
|
2015-03-21 10:56:26 -04:00
|
|
|
snapshotV4 := Table{
|
2015-03-21 08:53:16 -04:00
|
|
|
Name: "dashboard_snapshot",
|
|
|
|
|
Columns: []*Column{
|
|
|
|
|
{Name: "id", Type: DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
|
|
|
|
{Name: "name", Type: DB_NVarchar, Length: 255, Nullable: false},
|
2017-03-28 08:34:53 -04:00
|
|
|
{Name: "key", Type: DB_NVarchar, Length: 190, Nullable: false},
|
2015-03-21 08:53:16 -04:00
|
|
|
{Name: "dashboard", Type: DB_Text, Nullable: false},
|
|
|
|
|
{Name: "expires", Type: DB_DateTime, Nullable: false},
|
|
|
|
|
{Name: "created", Type: DB_DateTime, Nullable: false},
|
|
|
|
|
{Name: "updated", Type: DB_DateTime, Nullable: false},
|
|
|
|
|
},
|
|
|
|
|
Indices: []*Index{
|
|
|
|
|
{Cols: []string{"key"}, Type: UniqueIndex},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-26 20:34:58 +01:00
|
|
|
// add v4
|
2015-03-21 10:56:26 -04:00
|
|
|
mg.AddMigration("create dashboard_snapshot table v4", NewAddTableMigration(snapshotV4))
|
2015-03-26 20:34:58 +01:00
|
|
|
mg.AddMigration("drop table dashboard_snapshot_v4 #1", NewDropTableMigration("dashboard_snapshot"))
|
2015-03-26 12:00:52 +01:00
|
|
|
|
2015-03-26 20:34:58 +01:00
|
|
|
snapshotV5 := Table{
|
|
|
|
|
Name: "dashboard_snapshot",
|
|
|
|
|
Columns: []*Column{
|
|
|
|
|
{Name: "id", Type: DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
|
|
|
|
{Name: "name", Type: DB_NVarchar, Length: 255, Nullable: false},
|
2017-03-28 08:34:53 -04:00
|
|
|
{Name: "key", Type: DB_NVarchar, Length: 190, Nullable: false},
|
|
|
|
|
{Name: "delete_key", Type: DB_NVarchar, Length: 190, Nullable: false},
|
2015-03-26 20:34:58 +01:00
|
|
|
{Name: "org_id", Type: DB_BigInt, Nullable: false},
|
|
|
|
|
{Name: "user_id", Type: DB_BigInt, Nullable: false},
|
|
|
|
|
{Name: "external", Type: DB_Bool, Nullable: false},
|
|
|
|
|
{Name: "external_url", Type: DB_NVarchar, Length: 255, Nullable: false},
|
|
|
|
|
{Name: "dashboard", Type: DB_Text, Nullable: false},
|
|
|
|
|
{Name: "expires", Type: DB_DateTime, Nullable: false},
|
|
|
|
|
{Name: "created", Type: DB_DateTime, Nullable: false},
|
|
|
|
|
{Name: "updated", Type: DB_DateTime, Nullable: false},
|
|
|
|
|
},
|
|
|
|
|
Indices: []*Index{
|
|
|
|
|
{Cols: []string{"key"}, Type: UniqueIndex},
|
|
|
|
|
{Cols: []string{"delete_key"}, Type: UniqueIndex},
|
|
|
|
|
{Cols: []string{"user_id"}},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mg.AddMigration("create dashboard_snapshot table v5 #2", NewAddTableMigration(snapshotV5))
|
|
|
|
|
addTableIndicesMigrations(mg, "v5", snapshotV5)
|
2015-04-23 16:18:00 +02:00
|
|
|
|
2015-04-25 20:28:50 +02:00
|
|
|
// change column type of dashboard
|
2020-11-11 06:21:08 +01:00
|
|
|
mg.AddMigration("alter dashboard_snapshot to mediumtext v2", NewRawSQLMigration("").
|
2015-04-25 20:28:50 +02:00
|
|
|
Mysql("ALTER TABLE dashboard_snapshot MODIFY dashboard MEDIUMTEXT;"))
|
2017-03-28 08:34:53 -04:00
|
|
|
|
|
|
|
|
mg.AddMigration("Update dashboard_snapshot table charset", NewTableCharsetMigration("dashboard_snapshot", []*Column{
|
|
|
|
|
{Name: "name", Type: DB_NVarchar, Length: 255, Nullable: false},
|
|
|
|
|
{Name: "key", Type: DB_NVarchar, Length: 190, Nullable: false},
|
|
|
|
|
{Name: "delete_key", Type: DB_NVarchar, Length: 190, Nullable: false},
|
|
|
|
|
{Name: "external_url", Type: DB_NVarchar, Length: 255, Nullable: false},
|
|
|
|
|
{Name: "dashboard", Type: DB_MediumText, Nullable: false},
|
|
|
|
|
}))
|
2018-12-10 16:25:02 -05:00
|
|
|
|
|
|
|
|
mg.AddMigration("Add column external_delete_url to dashboard_snapshots table", NewAddColumnMigration(snapshotV5, &Column{
|
|
|
|
|
Name: "external_delete_url", Type: DB_NVarchar, Length: 255, Nullable: true,
|
|
|
|
|
}))
|
2020-10-13 10:19:42 +02:00
|
|
|
|
|
|
|
|
mg.AddMigration("Add encrypted dashboard json column", NewAddColumnMigration(snapshotV5, &Column{
|
|
|
|
|
Name: "dashboard_encrypted", Type: DB_Blob, Nullable: true,
|
|
|
|
|
}))
|
2020-11-04 18:41:05 +01:00
|
|
|
|
2020-11-11 06:21:08 +01:00
|
|
|
mg.AddMigration("Change dashboard_encrypted column to MEDIUMBLOB", NewRawSQLMigration("").
|
2020-11-04 18:41:05 +01:00
|
|
|
Mysql("ALTER TABLE dashboard_snapshot MODIFY dashboard_encrypted MEDIUMBLOB;"))
|
2015-03-21 08:53:16 -04:00
|
|
|
}
|