* 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
452 B
SQL
18 lines
452 B
SQL
INSERT INTO {{ .Ident "secret_encrypted_value" }} (
|
|
{{ .Ident "namespace" }},
|
|
{{ .Ident "name" }},
|
|
{{ .Ident "version" }},
|
|
{{ .Ident "encrypted_data" }},
|
|
{{ .Ident "data_key_id" }},
|
|
{{ .Ident "created" }},
|
|
{{ .Ident "updated" }}
|
|
) VALUES (
|
|
{{ .Arg .Row.Namespace }},
|
|
{{ .Arg .Row.Name }},
|
|
{{ .Arg .Row.Version }},
|
|
{{ .Arg .Row.EncryptedData }},
|
|
{{ .Arg .Row.DataKeyID }},
|
|
{{ .Arg .Row.Created }},
|
|
{{ .Arg .Row.Updated }}
|
|
);
|