mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 07:02:12 +08:00

* Add folder to the SQL backend * remove unused key * fix tests * Return folders from watch
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'
|
|
)
|
|
;
|