Merge pull request #25069 from nextcloud/bugfix/noid/regression-dont-touch-assignable-column

Don't remove assignable column for now
This commit is contained in:
Roeland Jago Douma 2021-01-11 13:17:35 +01:00 committed by GitHub
commit d0fdc6ef08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -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')) {