1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

Merge branch 'feat-git-integration' of github.com:appwrite/appwrite into feat-git-integration

This commit is contained in:
Khushboo Verma 2023-08-09 21:24:24 +05:30
commit 2856077c04

View file

@ -782,6 +782,18 @@ $commonCollections = [
'array' => false, 'array' => false,
'filters' => ['encrypt'], 'filters' => ['encrypt'],
], ],
[
// Used to store data from provider that may or may not be sensitive
'$id' => ID::custom('secrets'),
'type' => Database::VAR_STRING,
'format' => '',
'size' => 16384,
'signed' => true,
'required' => false,
'default' => [],
'array' => false,
'filters' => ['json', 'encrypt'],
],
], ],
'indexes' => [ 'indexes' => [
[ [