diff --git a/app/config/collections.php b/app/config/collections.php index 98f41e8833..1bf7138693 100644 --- a/app/config/collections.php +++ b/app/config/collections.php @@ -489,6 +489,61 @@ $collections = [ 'array' => false, 'filters' => [], ], + [ + '$id' => 'databaseSecrets', + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => 16384, + 'signed' => true, + 'required' => false, + 'default' => [], + 'array' => true, + 'filters' => ['encrypt'], + ], + [ + '$id' => 'databaseSecretsDisplacement', + 'type' => Database::VAR_INTEGER, + 'format' => '', + 'size' => 2, + 'signed' => false, + 'required' => false, + 'default' => 0, + 'array' => false, + 'filters' => [], + ], + [ + '$id' => 'storageSecrets', + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => 16384, + 'signed' => true, + 'required' => false, + 'default' => [], + 'array' => true, + 'filters' => ['encrypt'], + ], + [ + '$id' => 'storageSecretsDisplacement', + 'type' => Database::VAR_INTEGER, + 'format' => '', + 'size' => 2, + 'signed' => false, + 'required' => false, + 'default' => 0, + 'array' => false, + 'filters' => [], + ], + [ + '$id' => 'jwtSecret', + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => 16384, + 'signed' => true, + 'required' => false, + 'default' => [], + 'array' => false, + 'filters' => ['encrypt'], + ], [ '$id' => 'services', 'type' => Database::VAR_STRING,