Skip to content

Commit 844b26c

Browse files
authored
Merge pull request #1368 from nextcloud/backport/1367/stable10
[stable10] fix(FaceDetectionWithTitle): Rename vector column to face_vector
2 parents bb3f115 + 95bca85 commit 844b26c

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)