Skip to content

Commit

Permalink
Merge pull request #25001 from nextcloud/bugfix/23044/fix-column-name…
Browse files Browse the repository at this point in the history
…-check

Fix column name to check prior to deleting
  • Loading branch information
rullzer authored Jan 7, 2021
2 parents 4502115 + 30c603c commit 2495e18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Migrations/Version21000Date20201120141228.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt

if ($schema->hasTable('systemtag')) {
$table = $schema->getTable('systemtag');
if ($table->hasColumn('systemtag')) {
if ($table->hasColumn('assignable')) {
$table->dropColumn('assignable');
}
}
Expand Down

0 comments on commit 2495e18

Please sign in to comment.