mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
41d432b5ae
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
32 lines
1.0 KiB
Go
32 lines
1.0 KiB
Go
package migrations
|
|
|
|
import (
|
|
. "github.com/grafana/grafana/pkg/services/sqlstore/migrator"
|
|
)
|
|
|
|
func addQuotaMigration(mg *Migrator) {
|
|
var quotaV1 = Table{
|
|
Name: "quota",
|
|
Columns: []*Column{
|
|
{Name: "id", Type: DB_BigInt, IsPrimaryKey: true, IsAutoIncrement: true},
|
|
{Name: "org_id", Type: DB_BigInt, Nullable: true},
|
|
{Name: "user_id", Type: DB_BigInt, Nullable: true},
|
|
{Name: "target", Type: DB_NVarchar, Length: 190, Nullable: false},
|
|
{Name: "limit", Type: DB_BigInt, Nullable: false},
|
|
{Name: "created", Type: DB_DateTime, Nullable: false},
|
|
{Name: "updated", Type: DB_DateTime, Nullable: false},
|
|
},
|
|
Indices: []*Index{
|
|
{Cols: []string{"org_id", "user_id", "target"}, Type: UniqueIndex},
|
|
},
|
|
}
|
|
mg.AddMigration("create quota table v1", NewAddTableMigration(quotaV1))
|
|
|
|
//------- indexes ------------------
|
|
addTableIndicesMigrations(mg, "v1", quotaV1)
|
|
|
|
mg.AddMigration("Update quota table charset", NewTableCharsetMigration("quota", []*Column{
|
|
{Name: "target", Type: DB_NVarchar, Length: 190, Nullable: false},
|
|
}))
|
|
}
|