diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-10-23 12:49:50 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-10-23 12:49:50 +0200 |
commit | 68bb4a066ce791967ea458c38e53e52ad0e4b8a6 (patch) | |
tree | 1498e4e805180a42c7bf4171ba3237d42582aa75 /core/Migrations | |
parent | 5f815bdcc6b349d7ba3f699c7d0e455286b33f07 (diff) | |
download | nextcloud-server-68bb4a066ce791967ea458c38e53e52ad0e4b8a6.tar.gz nextcloud-server-68bb4a066ce791967ea458c38e53e52ad0e4b8a6.zip |
fix(TextToImage\Migration): Fix typo
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'core/Migrations')
-rw-r--r-- | core/Migrations/Version28000Date20230906104802.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version28000Date20230906104802.php b/core/Migrations/Version28000Date20230906104802.php index 3d8ee9a66e0..06b41ca3ace 100644 --- a/core/Migrations/Version28000Date20230906104802.php +++ b/core/Migrations/Version28000Date20230906104802.php @@ -82,7 +82,7 @@ class Version28000Date20230906104802 extends SimpleMigrationStep { $table->addColumn('last_updated', Types::DATETIME, [ 'notnull' => false, ]); - $table->addColumn('completion_expeted_at', Types::DATETIME, [ + $table->addColumn('completion_expected_at', Types::DATETIME, [ 'notnull' => false, ]); |