* everything compiles * tests pass * remove file included by accident * add entry to gitignore * some scaffolding for the migration executor * remove file * implement and test the migration * use xkube.Namespace in our interfaces * add todo * update wire deps * add some logs * fix wire dependency ordering * create tests to validate error conditions during migrations
18 lines
241 B
SQL
Executable File
18 lines
241 B
SQL
Executable File
INSERT INTO `secret_encrypted_value` (
|
|
`namespace`,
|
|
`name`,
|
|
`version`,
|
|
`encrypted_data`,
|
|
`data_key_id`,
|
|
`created`,
|
|
`updated`
|
|
) VALUES (
|
|
'ns',
|
|
'n1',
|
|
1,
|
|
'[115 101 99 114 101 116]',
|
|
'test-data-key-id',
|
|
1234,
|
|
5678
|
|
);
|