From 2a93c403a4b214a8f9ab1d4e6c8dd615d195eba0 Mon Sep 17 00:00:00 2001
From: Vincent Petry <vincent@nextcloud.com>
Date: Mon, 11 Jan 2021 11:58:14 +0100
Subject: [PATCH] Don't remove assignable column for now

It causes side effects.

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
---
 core/Migrations/Version21000Date20201120141228.php | 7 -------
 1 file changed, 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')) {
-- 
GitLab