From 46183c665448d6efa5d872767e8b1e7e3077b347 Mon Sep 17 00:00:00 2001 From: Damodar Lohani Date: Tue, 22 Feb 2022 13:48:24 +0545 Subject: [PATCH] metadata field for deployments --- app/config/collections.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/config/collections.php b/app/config/collections.php index 807c6cca0f..08723686a7 100644 --- a/app/config/collections.php +++ b/app/config/collections.php @@ -1840,6 +1840,17 @@ $collections = [ 'array' => false, 'filters' => [], ], + [ + '$id' => 'metadata', + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => 16384, // https://tools.ietf.org/html/rfc4288#section-4.2 + 'signed' => true, + 'required' => false, + 'default' => null, + 'array' => false, + 'filters' => ['json'], + ], [ '$id' => 'chunksTotal', 'type' => Database::VAR_INTEGER,