Skip to content
Snippets Groups Projects
Unverified Commit d0fdc6ef authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

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

Don't remove assignable column for now
parents 8b656e32 2a93c403
No related branches found
No related tags found
No related merge requests found
......@@ -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')) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment