From 95bca850f152a2b863b160402e89755e0d447f63 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 8 Sep 2025 09:09:29 +0200 Subject: [PATCH] fix(FaceDetectionWithTitle): Rename vector column to face_vector fixes #1365 Signed-off-by: Marcel Klehr --- lib/Db/FaceDetectionWithTitle.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Db/FaceDetectionWithTitle.php b/lib/Db/FaceDetectionWithTitle.php index b29882cde..3a0b8a864 100644 --- a/lib/Db/FaceDetectionWithTitle.php +++ b/lib/Db/FaceDetectionWithTitle.php @@ -15,8 +15,8 @@ final class FaceDetectionWithTitle extends FaceDetection { protected $title; - public static $columns = ['id', 'user_id', 'file_id', 'x', 'y', 'height', 'width', 'vector', 'cluster_id', 'title']; - public static $fields = ['id', 'userId', 'fileId', 'x', 'y', 'height', 'width', 'vector', 'clusterId', 'title']; + public static $columns = ['id', 'user_id', 'file_id', 'x', 'y', 'height', 'width', 'face_vector', 'cluster_id', 'title']; + public static $fields = ['id', 'userId', 'fileId', 'x', 'y', 'height', 'width', 'faceVector', 'clusterId', 'title']; public function __construct() { parent::__construct();