Merge remote-tracking branch 'origin/1.6.x' into fix-max-queries-size

This commit is contained in:
Jake Barnby 2024-10-16 21:36:56 +13:00
commit 3d991ede3e
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -4575,6 +4575,20 @@ $consoleCollections = array_merge([
'lengths' => [Database::LENGTH_KEY],
'orders' => [Database::ORDER_ASC],
],
[
'$id' => ID::custom('_key_pingCount'),
'type' => Database::INDEX_KEY,
'attributes' => ['pingCount'],
'lengths' => [],
'orders' => [],
],
[
'$id' => ID::custom('_key_pingedAt'),
'type' => Database::INDEX_KEY,
'attributes' => ['pingedAt'],
'lengths' => [],
'orders' => [],
]
],
],