Don't remove assignable column for now
It causes side effects. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
This commit is contained in:
parent
82ee3043ce
commit
2a93c403a4
|
@ -60,13 +60,6 @@ class Version21000Date20201120141228 extends SimpleMigrationStep {
|
||||||
$schema->dropTable('dav_job_status');
|
$schema->dropTable('dav_job_status');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($schema->hasTable('systemtag')) {
|
|
||||||
$table = $schema->getTable('systemtag');
|
|
||||||
if ($table->hasColumn('assignable')) {
|
|
||||||
$table->dropColumn('assignable');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($schema->hasTable('share')) {
|
if ($schema->hasTable('share')) {
|
||||||
$table = $schema->getTable('share');
|
$table = $schema->getTable('share');
|
||||||
if ($table->hasColumn('attributes')) {
|
if ($table->hasColumn('attributes')) {
|
||||||
|
|
Loading…
Reference in New Issue