diff options
author | Joas Schilling <coding@schilljs.com> | 2021-01-07 10:50:36 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-01-07 12:33:01 +0000 |
commit | 1142b17cdaca6c24e3bd390a3aab9b9931fc542d (patch) | |
tree | 46e10a841c8a671d8f74eb497ec329fe8a9dde0c /core | |
parent | fb0067a77728f528e302f0052fd9b9389c2f9948 (diff) | |
download | nextcloud-server-1142b17cdaca6c24e3bd390a3aab9b9931fc542d.tar.gz nextcloud-server-1142b17cdaca6c24e3bd390a3aab9b9931fc542d.zip |
Fix column name to check prior to deleting
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-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 844679b8d95..a5f3a619f4e 100644 --- a/core/Migrations/Version21000Date20201120141228.php +++ b/core/Migrations/Version21000Date20201120141228.php @@ -40,7 +40,7 @@ class Version21000Date20201120141228 extends SimpleMigrationStep { if ($schema->hasTable('systemtag')) { $table = $schema->getTable('systemtag'); - if ($table->hasColumn('systemtag')) { + if ($table->hasColumn('assignable')) { $table->dropColumn('assignable'); } } |