Skip to content

Commit 3fca3b2

Browse files
authored
Merge pull request #1369 from nextcloud/backport/1367/stable9
[stable9] fix(FaceDetectionWithTitle): Rename vector column to face_vector
2 parents 9358c5b + e2a9768 commit 3fca3b2

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)