aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/TextProcessing
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2023-07-28 10:52:48 +0200
committerJulien Veyssier <julien-nc@posteo.net>2023-08-02 12:37:36 +0200
commitad3f3533357a2f85be92891bd024b656a98a9f4f (patch)
tree4aa7b07a421cdc02ebe3e5b2656b1d4b3895045b /lib/private/TextProcessing
parentbe7487b55998e3e65adadf1e4dc5d441ad1ab70c (diff)
downloadnextcloud-server-ad3f3533357a2f85be92891bd024b656a98a9f4f.tar.gz
nextcloud-server-ad3f3533357a2f85be92891bd024b656a98a9f4f.zip
Migration: Drop llm_tasks table and add textprocessing_tasks
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'lib/private/TextProcessing')
-rw-r--r--lib/private/TextProcessing/Db/TaskMapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/TextProcessing/Db/TaskMapper.php b/lib/private/TextProcessing/Db/TaskMapper.php
index 508f3fdf3b8..624efd042f7 100644
--- a/lib/private/TextProcessing/Db/TaskMapper.php
+++ b/lib/private/TextProcessing/Db/TaskMapper.php
@@ -41,7 +41,7 @@ class TaskMapper extends QBMapper {
IDBConnection $db,
private ITimeFactory $timeFactory,
) {
- parent::__construct($db, 'llm_tasks', Task::class);
+ parent::__construct($db, 'textprocessing_tasks', Task::class);
}
/**