diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-07-28 10:52:48 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-08-09 10:27:58 +0200 |
commit | 50adc8c9ab010ef20ee08bcc56137120b1a2df9f (patch) | |
tree | fa5ad044ba5acb133f77c57f94dc69a5caa4d593 /lib | |
parent | 4b97ec7c65d86e908ffea824cb650c5a59281249 (diff) | |
download | nextcloud-server-50adc8c9ab010ef20ee08bcc56137120b1a2df9f.tar.gz nextcloud-server-50adc8c9ab010ef20ee08bcc56137120b1a2df9f.zip |
Migration: Drop llm_tasks table and add textprocessing_tasks
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
(cherry picked from commit ad3f3533357a2f85be92891bd024b656a98a9f4f)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/TextProcessing/Db/TaskMapper.php | 2 |
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); } /** |