From f4cbcb13839838ee7211a0b9688035a118eb95ff Mon Sep 17 00:00:00 2001 From: Bradley Schofield Date: Tue, 8 Aug 2023 13:45:33 +0100 Subject: [PATCH] Re-Add collections --- app/config/collections.php | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/app/config/collections.php b/app/config/collections.php index b9f3ef0efd..3183535bb2 100644 --- a/app/config/collections.php +++ b/app/config/collections.php @@ -243,6 +243,39 @@ $commonCollections = [ 'array' => false, 'filters' => ['datetime'], ], + [ + '$id' => ID::custom('migrationsFirebaseAccessToken'), + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => 16384, + 'signed' => true, + 'required' => false, + 'default' => null, + 'array' => false, + 'filters' => ['encrypt'], + ], + [ + '$id' => ID::custom('migrationsFirebaseAccessTokenExpiry'), + 'type' => Database::VAR_DATETIME, + 'format' => '', + 'size' => 0, + 'signed' => false, + 'required' => false, + 'default' => null, + 'array' => false, + 'filters' => ['datetime'], + ], + [ + '$id' => ID::custom('migrationsFirebaseRefreshToken'), + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => 16384, + 'signed' => true, + 'required' => false, + 'default' => null, + 'array' => false, + 'filters' => ['encrypt'], + ] ], 'indexes' => [ [