Skip to content

Commit 2495e18

Browse files
authored
Merge pull request #25001 from nextcloud/bugfix/23044/fix-column-name-check
Fix column name to check prior to deleting
2 parents 4502115 + 30c603c commit 2495e18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/Migrations/Version21000Date20201120141228.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
6262

6363
if ($schema->hasTable('systemtag')) {
6464
$table = $schema->getTable('systemtag');
65-
if ($table->hasColumn('systemtag')) {
65+
if ($table->hasColumn('assignable')) {
6666
$table->dropColumn('assignable');
6767
}
6868
}

0 commit comments

Comments
 (0)