1
0
Fork 0
mirror of synced 2024-07-01 20:50:49 +12:00

Add session ID + internal ID to targets

This commit is contained in:
Jake Barnby 2024-02-03 03:02:45 +13:00
parent d65a8d05a4
commit 38f93a3e89
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -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,