mirror of https://github.com/wallabag/wallabag.git
Skip migration if the table was already renamed
Doctrine 3.5 reruns skipped migrations when invoking doctrine:migrations:migrate. This causes this migration to rerun and it errors since craue_config_setting table gets renamed in Version20190808124957.php to internal_setting table. Fixes #6660
This commit is contained in:
parent
dc02c679d2
commit
131ef532c7
|
@ -13,6 +13,8 @@ class Version20170606155640 extends WallabagMigration
|
||||||
{
|
{
|
||||||
public function up(Schema $schema): void
|
public function up(Schema $schema): void
|
||||||
{
|
{
|
||||||
|
$this->skipIf(!$schema->hasTable($this->getTable('craue_config_setting')), 'Table already renamed');
|
||||||
|
|
||||||
$apiUserRegistration = $this->container
|
$apiUserRegistration = $this->container
|
||||||
->get('doctrine.orm.default_entity_manager')
|
->get('doctrine.orm.default_entity_manager')
|
||||||
->getConnection()
|
->getConnection()
|
||||||
|
|
Loading…
Reference in New Issue