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
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2021-01-07 21:46:56 +0300
committerGitHub <noreply@github.com>2021-01-07 21:46:56 +0300
commit102a6fedd0ae0b0b6e5b70f4dbb12761479fcc9c (patch)
treec6ce3e1e244b3092c358d24160d8d724b549edae
parentb2cfd43b8ff8f7c5281698f5478a2fef08df2506 (diff)
parent1142b17cdaca6c24e3bd390a3aab9b9931fc542d (diff)
Merge pull request #25009 from nextcloud/backport/25001/stable20
[stable20] Fix column name to check prior to deleting
-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 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');
}
}