Files
grafana/pkg/storage/unified/sql/testdata/mysql--resource_insert-simple.sql
Georges Chaudy c3571752b6 Unitstore: Fix the Folder migration (#96078)
* UniStore: Add folder to the SQL backend

This reverts commit aaa4f4a23e3ba0e02526f8beb05321761382259f.

* fix folder migration
2024-11-12 12:52:04 +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'
)
;