mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 02:11:50 +08:00

Revert "UniStore: Add folder to the SQL backend (#95671)" This reverts commit f0756626969f1a2d345874f92463b275c721ab79.
23 lines
330 B
SQL
Executable File
23 lines
330 B
SQL
Executable File
INSERT INTO "resource"
|
|
(
|
|
"guid",
|
|
"group",
|
|
"resource",
|
|
"namespace",
|
|
"name",
|
|
"previous_resource_version",
|
|
"value",
|
|
"action"
|
|
)
|
|
VALUES (
|
|
'',
|
|
'gg',
|
|
'rr',
|
|
'nn',
|
|
'name',
|
|
123,
|
|
'[]',
|
|
'ADDED'
|
|
)
|
|
;
|