summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-01-11 11:58:14 +0100
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-01-11 12:19:54 +0000
commitc96f3e830aae9ea3108ccf9a811360d499d57ce3 (patch)
tree064593fe68fa16682843ca767382c123c2f7cd47 /core
parent6594ca4bbb65013c534ff1ad19bdb0ec3de66b29 (diff)
downloadnextcloud-server-c96f3e830aae9ea3108ccf9a811360d499d57ce3.tar.gz
nextcloud-server-c96f3e830aae9ea3108ccf9a811360d499d57ce3.zip
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 a5f3a619f4e..eeb3c18c5d5 100644
--- a/core/Migrations/Version21000Date20201120141228.php
+++ b/core/Migrations/Version21000Date20201120141228.php
@@ -38,13 +38,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')) {