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

* Revert "Revert "Unistore : Ensure Watch works in HA mode." (#94097)" This reverts commit 7c3fc2f2619a0eb2157ea27e7dfef91996a9de7c. * make previous_resource_version nullable * handle nil case
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'
|
|
)
|
|
;
|