Skip to content

Commit 4ffe87c

Browse files
authored
Merge pull request #1367 from nextcloud/fix/face-detection-with-title-vector-col-rename
fix(FaceDetectionWithTitle): Rename vector column to face_vector
2 parents 88273c0 + 9a97600 commit 4ffe87c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Db/FaceDetectionWithTitle.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
final class FaceDetectionWithTitle extends FaceDetection {
1616
protected $title;
1717

18-
public static $columns = ['id', 'user_id', 'file_id', 'x', 'y', 'height', 'width', 'vector', 'cluster_id', 'title'];
19-
public static $fields = ['id', 'userId', 'fileId', 'x', 'y', 'height', 'width', 'vector', 'clusterId', 'title'];
18+
public static $columns = ['id', 'user_id', 'file_id', 'x', 'y', 'height', 'width', 'face_vector', 'cluster_id', 'title'];
19+
public static $fields = ['id', 'userId', 'fileId', 'x', 'y', 'height', 'width', 'faceVector', 'clusterId', 'title'];
2020

2121
public function __construct() {
2222
parent::__construct();

0 commit comments

Comments
 (0)