Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
93bc588d
Commit
93bc588d
authored
Jun 19, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactoring: moving dashboards acl migrations to its own folder
parent
e2900158
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
26 deletions
+32
-26
pkg/services/sqlstore/migrations/dashboard_acl.go
+31
-0
pkg/services/sqlstore/migrations/dashboard_mig.go
+0
-26
pkg/services/sqlstore/migrations/migrations.go
+1
-0
No files found.
pkg/services/sqlstore/migrations/dashboard_acl.go
0 → 100644
View file @
93bc588d
package
migrations
import
.
"github.com/grafana/grafana/pkg/services/sqlstore/migrator"
func
addDashboardAclMigrations
(
mg
*
Migrator
)
{
dashboardAclV1
:=
Table
{
Name
:
"dashboard_acl"
,
Columns
:
[]
*
Column
{
{
Name
:
"id"
,
Type
:
DB_BigInt
,
IsPrimaryKey
:
true
,
IsAutoIncrement
:
true
},
{
Name
:
"org_id"
,
Type
:
DB_BigInt
},
{
Name
:
"dashboard_id"
,
Type
:
DB_BigInt
},
{
Name
:
"user_id"
,
Type
:
DB_BigInt
,
Nullable
:
true
},
{
Name
:
"user_group_id"
,
Type
:
DB_BigInt
,
Nullable
:
true
},
{
Name
:
"permissions"
,
Type
:
DB_SmallInt
,
Default
:
"4"
},
{
Name
:
"created"
,
Type
:
DB_DateTime
,
Nullable
:
false
},
{
Name
:
"updated"
,
Type
:
DB_DateTime
,
Nullable
:
false
},
},
Indices
:
[]
*
Index
{
{
Cols
:
[]
string
{
"org_id"
}},
{
Cols
:
[]
string
{
"dashboard_id"
,
"user_id"
},
Type
:
UniqueIndex
},
{
Cols
:
[]
string
{
"dashboard_id"
,
"user_group_id"
},
Type
:
UniqueIndex
},
},
}
mg
.
AddMigration
(
"create dashboard acl table"
,
NewAddTableMigration
(
dashboardAclV1
))
//------- indexes ------------------
mg
.
AddMigration
(
"add unique index dashboard_acl_org_id"
,
NewAddIndexMigration
(
dashboardAclV1
,
dashboardAclV1
.
Indices
[
0
]))
mg
.
AddMigration
(
"add unique index dashboard_acl_dashboard_id_user_id"
,
NewAddIndexMigration
(
dashboardAclV1
,
dashboardAclV1
.
Indices
[
1
]))
mg
.
AddMigration
(
"add unique index dashboard_acl_dashboard_id_group_id"
,
NewAddIndexMigration
(
dashboardAclV1
,
dashboardAclV1
.
Indices
[
2
]))
}
pkg/services/sqlstore/migrations/dashboard_mig.go
View file @
93bc588d
...
...
@@ -146,32 +146,6 @@ func addDashboardMigration(mg *Migrator) {
Name
:
"is_folder"
,
Type
:
DB_Bool
,
Nullable
:
false
,
Default
:
"0"
,
}))
dashboardAclV1
:=
Table
{
Name
:
"dashboard_acl"
,
Columns
:
[]
*
Column
{
{
Name
:
"id"
,
Type
:
DB_BigInt
,
IsPrimaryKey
:
true
,
IsAutoIncrement
:
true
},
{
Name
:
"org_id"
,
Type
:
DB_BigInt
},
{
Name
:
"dashboard_id"
,
Type
:
DB_BigInt
},
{
Name
:
"user_id"
,
Type
:
DB_BigInt
,
Nullable
:
true
},
{
Name
:
"user_group_id"
,
Type
:
DB_BigInt
,
Nullable
:
true
},
{
Name
:
"permissions"
,
Type
:
DB_SmallInt
,
Default
:
"4"
},
{
Name
:
"created"
,
Type
:
DB_DateTime
,
Nullable
:
false
},
{
Name
:
"updated"
,
Type
:
DB_DateTime
,
Nullable
:
false
},
},
Indices
:
[]
*
Index
{
{
Cols
:
[]
string
{
"org_id"
}},
{
Cols
:
[]
string
{
"dashboard_id"
,
"user_id"
},
Type
:
UniqueIndex
},
{
Cols
:
[]
string
{
"dashboard_id"
,
"user_group_id"
},
Type
:
UniqueIndex
},
},
}
mg
.
AddMigration
(
"create dashboard acl table"
,
NewAddTableMigration
(
dashboardAclV1
))
//------- indexes ------------------
mg
.
AddMigration
(
"add unique index dashboard_acl_org_id"
,
NewAddIndexMigration
(
dashboardAclV1
,
dashboardAclV1
.
Indices
[
0
]))
mg
.
AddMigration
(
"add unique index dashboard_acl_dashboard_id_user_id"
,
NewAddIndexMigration
(
dashboardAclV1
,
dashboardAclV1
.
Indices
[
1
]))
mg
.
AddMigration
(
"add unique index dashboard_acl_dashboard_id_group_id"
,
NewAddIndexMigration
(
dashboardAclV1
,
dashboardAclV1
.
Indices
[
2
]))
// add column to flag if dashboard has an ACL
mg
.
AddMigration
(
"Add column has_acl in dashboard"
,
NewAddColumnMigration
(
dashboardV2
,
&
Column
{
Name
:
"has_acl"
,
Type
:
DB_Bool
,
Nullable
:
false
,
Default
:
"0"
,
...
...
pkg/services/sqlstore/migrations/migrations.go
View file @
93bc588d
...
...
@@ -27,6 +27,7 @@ func AddMigrations(mg *Migrator) {
addTestDataMigrations
(
mg
)
addDashboardVersionMigration
(
mg
)
addUserGroupMigrations
(
mg
)
addDashboardAclMigrations
(
mg
)
}
func
addMigrationLogMigrations
(
mg
*
Migrator
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment