mirror of https://github.com/grafana/grafana.git
36 lines
484 B
SQL
Executable File
36 lines
484 B
SQL
Executable File
INSERT INTO "secret_secure_value" (
|
|
"guid",
|
|
"name",
|
|
"namespace",
|
|
"annotations",
|
|
"labels",
|
|
"created",
|
|
"created_by",
|
|
"updated",
|
|
"updated_by",
|
|
"active",
|
|
"version",
|
|
"description",
|
|
"keeper",
|
|
"decrypters",
|
|
"ref",
|
|
"external_id"
|
|
) VALUES (
|
|
'abc',
|
|
'name',
|
|
'ns',
|
|
'{"x":"XXXX"}',
|
|
'{"a":"AAA", "b", "BBBB"}',
|
|
1234,
|
|
'user:ryan',
|
|
5678,
|
|
'user:cameron',
|
|
FALSE,
|
|
1,
|
|
'description',
|
|
'keeper_test',
|
|
'decrypters_test',
|
|
'ref_test',
|
|
'extId'
|
|
);
|