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:
authorVincent Petry <vincent@nextcloud.com>2021-01-11 13:58:14 +0300
committerVincent Petry <vincent@nextcloud.com>2021-01-11 13:58:14 +0300
commit2a93c403a4b214a8f9ab1d4e6c8dd615d195eba0 (patch)
tree0d8aaf78eeade68004acf12e1f779a8b5c3b98c2 /core
parent82ee3043ced26f054995bf89b811343ac0728c6f (diff)
Don't remove assignable column for now
It causes side effects. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'core')
-rw-r--r--core/Migrations/Version21000Date20201120141228.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/core/Migrations/Version21000Date20201120141228.php b/core/Migrations/Version21000Date20201120141228.php
index 7f3eda2309b..3280aa12a59 100644
--- a/core/Migrations/Version21000Date20201120141228.php
+++ b/core/Migrations/Version21000Date20201120141228.php
@@ -60,13 +60,6 @@ class Version21000Date20201120141228 extends SimpleMigrationStep {
$schema->dropTable('dav_job_status');
}
- if ($schema->hasTable('systemtag')) {
- $table = $schema->getTable('systemtag');
- if ($table->hasColumn('assignable')) {
- $table->dropColumn('assignable');
- }
- }
-
if ($schema->hasTable('share')) {
$table = $schema->getTable('share');
if ($table->hasColumn('attributes')) {