mirror of
https://github.com/grafana/grafana.git
synced 2025-01-18 12:33:37 -06:00
b88644cb83
* add public dashboard table migration
27 lines
915 B
Go
27 lines
915 B
Go
package migrations
|
|
|
|
import (
|
|
. "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
|
)
|
|
|
|
func addPublicDashboardMigration(mg *Migrator) {
|
|
var dashboardPublicCfgV1 = Table{
|
|
Name: "dashboard_public_config",
|
|
Columns: []*Column{
|
|
{Name: "uid", Type: DB_BigInt, IsPrimaryKey: true},
|
|
{Name: "dashboard_uid", Type: DB_NVarchar, Length: 40, Nullable: false},
|
|
{Name: "org_id", Type: DB_BigInt, Nullable: false},
|
|
{Name: "refresh_rate", Type: DB_Int, Nullable: false, Default: "30"},
|
|
{Name: "template_variables", Type: DB_MediumText, Nullable: true},
|
|
{Name: "time_variables", Type: DB_Text, Nullable: false},
|
|
},
|
|
Indices: []*Index{
|
|
{Cols: []string{"uid"}, Type: UniqueIndex},
|
|
{Cols: []string{"org_id", "dashboard_uid"}},
|
|
},
|
|
}
|
|
|
|
mg.AddMigration("create dashboard public config v1", NewAddTableMigration(dashboardPublicCfgV1))
|
|
addTableIndicesMigrations(mg, "v1", dashboardPublicCfgV1)
|
|
}
|