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:
Roeland Jago Douma 2021-01-07 13:30:49 +01:00 committed by GitHub
commit 2495e1825a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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');
}
}