mirror of https://github.com/grafana/grafana.git
20 lines
304 B
MySQL
20 lines
304 B
MySQL
|
|
INSERT INTO `secret_data_key` (
|
||
|
|
`uid`,
|
||
|
|
`namespace`,
|
||
|
|
`label`,
|
||
|
|
`provider`,
|
||
|
|
`encrypted_data`,
|
||
|
|
`active`,
|
||
|
|
`created`,
|
||
|
|
`updated`
|
||
|
|
) VALUES (
|
||
|
|
'abc123',
|
||
|
|
'ns',
|
||
|
|
'label',
|
||
|
|
'provider',
|
||
|
|
'[115 101 99 114 101 116]',
|
||
|
|
TRUE,
|
||
|
|
'0001-01-01 00:00:00 +0000 UTC',
|
||
|
|
'0001-01-01 00:00:00 +0000 UTC'
|
||
|
|
);
|