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