mirror of https://github.com/grafana/grafana.git
19 lines
411 B
SQL
Executable File
19 lines
411 B
SQL
Executable File
UPDATE
|
|
"secret_secure_value"
|
|
SET
|
|
"guid" = 'abc',
|
|
"name" = 'name',
|
|
"namespace" = 'ns',
|
|
"annotations" = '{"x":"XXXX"}',
|
|
"labels" = '{"a":"AAA", "b", "BBBB"}',
|
|
"created" = 1234,
|
|
"created_by" = 'user:ryan',
|
|
"updated" = 5678,
|
|
"updated_by" = 'user:cameron',
|
|
"status_phase" = 'creating',
|
|
"description" = 'description',
|
|
"external_id" = 'extId'
|
|
WHERE "namespace" = 'ns' AND
|
|
"name" = 'name'
|
|
;
|