2015-12-03 09:43:55 -06:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import . "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
|
|
|
|
2016-01-10 14:37:11 -06:00
|
|
|
func addAppSettingsMigration(mg *Migrator) {
|
2015-12-03 09:43:55 -06:00
|
|
|
|
2016-01-25 14:18:18 -06:00
|
|
|
appSettingsV2 := Table{
|
2016-01-10 14:37:11 -06:00
|
|
|
Name: "app_settings",
|
2015-12-03 09:43:55 -06:00
|
|
|
Columns: []*Column{
|
|
|
|
{Name: "id", Type: DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
|
|
|
{Name: "org_id", Type: DB_BigInt, Nullable: true},
|
2016-01-10 14:37:11 -06:00
|
|
|
{Name: "app_id", Type: DB_NVarchar, Length: 255, Nullable: false},
|
2015-12-03 09:43:55 -06:00
|
|
|
{Name: "enabled", Type: DB_Bool, Nullable: false},
|
2015-12-21 16:09:27 -06:00
|
|
|
{Name: "pinned", Type: DB_Bool, Nullable: false},
|
2015-12-03 09:43:55 -06:00
|
|
|
{Name: "json_data", Type: DB_Text, Nullable: true},
|
2016-01-22 16:17:22 -06:00
|
|
|
{Name: "secure_json_data", Type: DB_Text, Nullable: true},
|
2015-12-03 09:43:55 -06:00
|
|
|
{Name: "created", Type: DB_DateTime, Nullable: false},
|
|
|
|
{Name: "updated", Type: DB_DateTime, Nullable: false},
|
|
|
|
},
|
|
|
|
Indices: []*Index{
|
2016-01-10 14:37:11 -06:00
|
|
|
{Cols: []string{"org_id", "app_id"}, Type: UniqueIndex},
|
2015-12-03 09:43:55 -06:00
|
|
|
},
|
|
|
|
}
|
2015-12-22 04:37:44 -06:00
|
|
|
|
2016-01-25 14:18:18 -06:00
|
|
|
mg.AddMigration("Drop old table app_settings v1", NewDropTableMigration("app_settings"))
|
|
|
|
|
|
|
|
mg.AddMigration("create app_settings table v2", NewAddTableMigration(appSettingsV2))
|
2015-12-03 09:43:55 -06:00
|
|
|
|
|
|
|
//------- indexes ------------------
|
2016-01-25 14:24:44 -06:00
|
|
|
addTableIndicesMigrations(mg, "v3", appSettingsV2)
|
2015-12-03 09:43:55 -06:00
|
|
|
}
|