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
50aa9ec6
Commit
50aa9ec6
authored
Jan 29, 2018
by
Marcus Efraimsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
db: add migrations for generating uid for existing dashboards. #7883
parent
401b01e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
pkg/services/sqlstore/migrations/dashboard_mig.go
+5
-0
No files found.
pkg/services/sqlstore/migrations/dashboard_mig.go
View file @
50aa9ec6
...
@@ -155,4 +155,9 @@ func addDashboardMigration(mg *Migrator) {
...
@@ -155,4 +155,9 @@ func addDashboardMigration(mg *Migrator) {
mg
.
AddMigration
(
"Add column uid in dashboard"
,
NewAddColumnMigration
(
dashboardV2
,
&
Column
{
mg
.
AddMigration
(
"Add column uid in dashboard"
,
NewAddColumnMigration
(
dashboardV2
,
&
Column
{
Name
:
"uid"
,
Type
:
DB_NVarchar
,
Length
:
12
,
Nullable
:
true
,
Name
:
"uid"
,
Type
:
DB_NVarchar
,
Length
:
12
,
Nullable
:
true
,
}))
}))
mg
.
AddMigration
(
"Set uid column values"
,
new
(
RawSqlMigration
)
.
Sqlite
(
"UPDATE dashboard SET uid=printf('%09d',id) WHERE uid IS NULL;"
)
.
Postgres
(
"UPDATE dashboard SET uid=lpad('' || id,9,'0') WHERE uid IS NULL;"
)
.
Mysql
(
"UPDATE dashboard SET uid=lpad(id,9,'0') WHERE uid IS NULL;"
))
}
}
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