From 1142b17cdaca6c24e3bd390a3aab9b9931fc542d Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 7 Jan 2021 10:50:36 +0100 Subject: [PATCH] Fix column name to check prior to deleting Signed-off-by: Joas Schilling --- core/Migrations/Version21000Date20201120141228.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Migrations/Version21000Date20201120141228.php b/core/Migrations/Version21000Date20201120141228.php index 844679b8d9..a5f3a619f4 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'); } }