mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 23:42:13 +08:00

* UniStore: Add folder to the SQL backend This reverts commit aaa4f4a23e3ba0e02526f8beb05321761382259f. * fix folder migration
25 lines
364 B
SQL
Executable File
25 lines
364 B
SQL
Executable File
INSERT INTO "resource"
|
|
(
|
|
"guid",
|
|
"group",
|
|
"resource",
|
|
"namespace",
|
|
"name",
|
|
"folder",
|
|
"previous_resource_version",
|
|
"value",
|
|
"action"
|
|
)
|
|
VALUES (
|
|
'',
|
|
'gg',
|
|
'rr',
|
|
'nn',
|
|
'name',
|
|
'fldr',
|
|
123,
|
|
'[]',
|
|
'ADDED'
|
|
)
|
|
;
|