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-02-25 07:55:31 -06:00
|
|
|
pluginSettingTable := Table{
|
|
|
|
Name: "plugin_setting",
|
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-02-25 07:55:31 -06:00
|
|
|
{Name: "plugin_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-02-25 07:55:31 -06:00
|
|
|
{Cols: []string{"org_id", "plugin_id"}, Type: UniqueIndex},
|
2015-12-03 09:43:55 -06:00
|
|
|
},
|
|
|
|
}
|
2015-12-22 04:37:44 -06:00
|
|
|
|
2016-02-25 07:55:31 -06:00
|
|
|
mg.AddMigration("create plugin_setting table", NewAddTableMigration(pluginSettingTable))
|
2015-12-03 09:43:55 -06:00
|
|
|
|
|
|
|
//------- indexes ------------------
|
2016-02-25 07:55:31 -06:00
|
|
|
addTableIndicesMigrations(mg, "v1", pluginSettingTable)
|
2015-12-03 09:43:55 -06:00
|
|
|
}
|