diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-01-11 11:58:14 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2021-01-11 12:19:54 +0000 |
commit | c96f3e830aae9ea3108ccf9a811360d499d57ce3 (patch) | |
tree | 064593fe68fa16682843ca767382c123c2f7cd47 /core | |
parent | 6594ca4bbb65013c534ff1ad19bdb0ec3de66b29 (diff) | |
download | nextcloud-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.php | 7 |
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')) { |