From 6fc4ad40f2faf425625ab0bb6476baa4b6f2d600 Mon Sep 17 00:00:00 2001 From: Matias De lellis Date: Mon, 11 Nov 2024 08:54:26 -0300 Subject: [PATCH] Explicitly assigns types in Faces entity. Issue #780 and #781 --- lib/Db/Face.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Db/Face.php b/lib/Db/Face.php index 3e836e33..746e6992 100644 --- a/lib/Db/Face.php +++ b/lib/Db/Face.php @@ -129,6 +129,8 @@ public function __construct() { $this->addType('image', 'integer'); $this->addType('person', 'integer'); $this->addType('isGroupable', 'bool'); + $this->addType('descriptor', 'json'); + $this->addType('creationTime', 'datetime'); } /**