From 38f93a3e89cea984e5b04602286614a8fd3146b9 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Sat, 3 Feb 2024 03:02:45 +1300 Subject: [PATCH] Add session ID + internal ID to targets --- app/config/collections.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app/config/collections.php b/app/config/collections.php index 3fb44cdea9..bd379b0cce 100644 --- a/app/config/collections.php +++ b/app/config/collections.php @@ -2117,6 +2117,28 @@ $commonCollections = [ 'array' => false, 'filters' => [], ], + [ + '$id' => ID::custom('sessionId'), + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => Database::LENGTH_KEY, + 'signed' => true, + 'required' => false, + 'default' => null, + 'array' => false, + 'filters' => [], + ], + [ + '$id' => ID::custom('sessionInternalId'), + 'type' => Database::VAR_STRING, + 'format' => '', + 'size' => Database::LENGTH_KEY, + 'signed' => true, + 'required' => false, + 'default' => null, + 'array' => false, + 'filters' => [], + ], [ '$id' => ID::custom('providerType'), 'type' => Database::VAR_STRING,