diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-01-07 13:30:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 13:30:49 +0100 |
commit | 2495e1825ac383b193ba9cc09f8201df0ad39b6e (patch) | |
tree | 323e1fbb0ee0e1db3f8242710a879c212972d501 | |
parent | 450211590f51e8876f42c377fa111256e671a9dc (diff) | |
parent | 30c603c6b2db9d8e218152b68aa28de68554ebd8 (diff) | |
download | nextcloud-server-2495e1825ac383b193ba9cc09f8201df0ad39b6e.tar.gz nextcloud-server-2495e1825ac383b193ba9cc09f8201df0ad39b6e.zip |
Merge pull request #25001 from nextcloud/bugfix/23044/fix-column-name-check
Fix column name to check prior to deleting
-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'); } } |