* Secrets: delete unused FakeKeeper * Secrets: encrypted value storage stores versions * add version to span * trigger build * remove ineffectual assignment * lint * drop secret_encrypted_value.uid / add name and version columns
11 lines
176 B
SQL
Executable File
11 lines
176 B
SQL
Executable File
UPDATE
|
|
"secret_encrypted_value"
|
|
SET
|
|
"encrypted_data" = '[115 101 99 114 101 116]',
|
|
"updated" = 5679
|
|
WHERE
|
|
"namespace" = 'ns' AND
|
|
"name" = 'n1' AND
|
|
"version" = 1
|
|
;
|