Drop assignable systemtag column
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
de67719d9f
commit
f276ccbbc3
|
@ -18,6 +18,13 @@ 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('systemtag')) {
|
||||||
|
$table->dropColumn('assignable');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return $schema;
|
return $schema;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue