mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 11:02:49 +08:00
21 lines
280 B
SQL
Executable File
21 lines
280 B
SQL
Executable File
INSERT INTO `resource`
|
|
(
|
|
`guid`,
|
|
`group`,
|
|
`resource`,
|
|
`namespace`,
|
|
`name`,
|
|
`value`,
|
|
`action`
|
|
)
|
|
VALUES (
|
|
'',
|
|
'gg',
|
|
'rr',
|
|
'nn',
|
|
'name',
|
|
'[]',
|
|
'ADDED'
|
|
)
|
|
;
|