Add internalId

This commit is contained in:
fogelito 2025-03-24 12:54:19 +02:00
parent 586e676299
commit 25b6d59e30

View file

@ -60,11 +60,19 @@ class Base extends Queries
'type' => Database::VAR_STRING,
'array' => false,
]);
$attributes[] = new Document([
'key' => '$internalId',
'type' => Database::VAR_STRING,
'array' => false,
]);
$attributes[] = new Document([
'key' => '$createdAt',
'type' => Database::VAR_DATETIME,
'array' => false,
]);
$attributes[] = new Document([
'key' => '$updatedAt',
'type' => Database::VAR_DATETIME,