Files
grafana/pkg/storage/unified/sql/testdata/postgres--resource_insert-simple.sql
Georges Chaudy f075662696 UniStore: Add folder to the SQL backend (#95671)
* Add folder to the SQL backend

* remove unused key

* fix tests

* Return folders from watch
2024-11-05 10:37:23 +01:00

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'
)
;