mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #25001 from nextcloud/bugfix/23044/fix-column-name-check
Fix column name to check prior to deleting
This commit is contained in:
commit
2495e1825a
1 changed files with 1 additions and 1 deletions
|
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue