diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-10-16 16:19:19 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-10-18 13:21:50 +0200 |
commit | e5efbc88d864386a441ee8f2534888652cdcf4b0 (patch) | |
tree | a347171f9840a8d252670953b34b25a19575ae40 /core/Migrations | |
parent | 41847c951a48cc2c79992656b6a5bf59d9334e1f (diff) | |
download | nextcloud-server-e5efbc88d864386a441ee8f2534888652cdcf4b0.tar.gz nextcloud-server-e5efbc88d864386a441ee8f2534888652cdcf4b0.zip |
enh(TextToImage): Address review comments
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'core/Migrations')
-rw-r--r-- | core/Migrations/Version28000Date20230906104802.php | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/core/Migrations/Version28000Date20230906104802.php b/core/Migrations/Version28000Date20230906104802.php index 662bdd648b7..61f0d01dff0 100644 --- a/core/Migrations/Version28000Date20230906104802.php +++ b/core/Migrations/Version28000Date20230906104802.php @@ -45,7 +45,6 @@ class Version28000Date20230906104802 extends SimpleMigrationStep { public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); - $changed = false; if (!$schema->hasTable('text2image_tasks')) { $table = $schema->createTable('text2image_tasks'); @@ -76,11 +75,8 @@ class Version28000Date20230906104802 extends SimpleMigrationStep { 'length' => 255, 'default' => '', ]); - $table->addColumn('last_updated', Types::INTEGER, [ + $table->addColumn('last_updated', Types::DATETIME, [ 'notnull' => false, - 'length' => 4, - 'default' => 0, - 'unsigned' => true, ]); $table->setPrimaryKey(['id'], 't2i_tasks_id_index'); @@ -88,10 +84,6 @@ class Version28000Date20230906104802 extends SimpleMigrationStep { $table->addIndex(['status'], 't2i_tasks_status'); $table->addIndex(['user_id', 'app_id', 'identifier'], 't2i_tasks_uid_appid_ident'); - $changed = true; - } - - if ($changed) { return $schema; } |