Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-01-07 12:50:36 +0300
committerJoas Schilling <coding@schilljs.com>2021-01-07 12:50:36 +0300
commit30c603c6b2db9d8e218152b68aa28de68554ebd8 (patch)
tree90c315ed192bc296acbf0df30f9f66e329536cf9 /core
parent2dd04f76d2b56fc71729d773e011515096b0b1d3 (diff)
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.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Migrations/Version21000Date20201120141228.php b/core/Migrations/Version21000Date20201120141228.php
index 5ef79cf58b4..7f3eda2309b 100644
--- a/core/Migrations/Version21000Date20201120141228.php
+++ b/core/Migrations/Version21000Date20201120141228.php
@@ -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');
}
}