diff --git a/app/config/collections/platform.php b/app/config/collections/platform.php index 8e214e7999..640009699d 100644 --- a/app/config/collections/platform.php +++ b/app/config/collections/platform.php @@ -1379,6 +1379,17 @@ $platformCollections = [ 'array' => false, 'filters' => [], ], + [ + '$id' => ID::custom('actions'), + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => 65535, + 'signed' => true, + 'required' => false, + 'default' => new \stdClass(), + 'array' => false, + 'filters' => ['json'], + ], ], 'indexes' => [ [ diff --git a/src/Appwrite/Platform/Workers/Certificates.php b/src/Appwrite/Platform/Workers/Certificates.php index 2d7fffc877..5884b7aad6 100644 --- a/src/Appwrite/Platform/Workers/Certificates.php +++ b/src/Appwrite/Platform/Workers/Certificates.php @@ -94,7 +94,7 @@ class Certificates extends Action CertificatesAdapter $certificates, array $plan, ValidatorAuthorization $authorization, - array $nameservers, + ?array $nameservers, ): void { $payload = $message->getPayload() ?? [];