diff options
author | Joas Schilling <coding@schilljs.com> | 2021-01-07 10:50:36 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-01-07 10:50:36 +0100 |
commit | 30c603c6b2db9d8e218152b68aa28de68554ebd8 (patch) | |
tree | 90c315ed192bc296acbf0df30f9f66e329536cf9 /core | |
parent | 2dd04f76d2b56fc71729d773e011515096b0b1d3 (diff) | |
download | nextcloud-server-30c603c6b2db9d8e218152b68aa28de68554ebd8.tar.gz nextcloud-server-30c603c6b2db9d8e218152b68aa28de68554ebd8.zip |
Fix column name to check prior to deleting
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/Migrations/Version21000Date20201120141228.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version21000Date20201120141228.php b/core/Migrations/Version21000Date20201120141228.php index 5ef79cf58b4..7f3eda2309b 100644 --- a/core/Migrations/Version21000Date20201120141228.php +++ b/core/Migrations/Version21000Date20201120141228.php @@ -62,7 +62,7 @@ class Version21000Date20201120141228 extends SimpleMigrationStep { if ($schema->hasTable('systemtag')) { $table = $schema->getTable('systemtag'); - if ($table->hasColumn('systemtag')) { + if ($table->hasColumn('assignable')) { $table->dropColumn('assignable'); } } |