mirror of https://github.com/wallabag/wallabag.git
Merge pull request #6678 from cloudron-io/doctrine_migration_fix
Skip migration if the table was already renamed
This commit is contained in:
commit
31566fb6eb
|
@ -13,6 +13,8 @@ class Version20170606155640 extends WallabagMigration
|
|||
{
|
||||
public function up(Schema $schema): void
|
||||
{
|
||||
$this->skipIf(!$schema->hasTable($this->getTable('craue_config_setting')), 'Table already renamed');
|
||||
|
||||
$apiUserRegistration = $this->container
|
||||
->get('doctrine.orm.default_entity_manager')
|
||||
->getConnection()
|
||||
|
|
Loading…
Reference in New Issue