mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
LLM Migration: Return null if nothing changed
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
bad124c07b
commit
0909657ea0
1 changed files with 3 additions and 1 deletions
|
|
@ -93,8 +93,10 @@ class Version28000Date20230616104802 extends SimpleMigrationStep {
|
|||
$table->setPrimaryKey(['id'], 'llm_tasks_id_index');
|
||||
$table->addUniqueIndex(['status', 'type'], 'llm_tasks_status_type');
|
||||
$table->addIndex(['last_updated'], 'llm_tasks_updated');
|
||||
|
||||
return $schema;
|
||||
}
|
||||
|
||||
return $schema;
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue