我如何指定使用Symfony原理进行迁移所需要的架构?

问题描述 投票:1回答:1

[当我使用./bin/console doctrine:migrations:migrate命令时,我的迁移适用于public模式。但是在我的实体中,我设置了另一个模式:

/**
 * @ORM\Entity(repositoryClass="App\Repository\MyEntityRepository")
 * @ORM\Table(schema="schemaname", name="entity")
 */
class MyEntity

如何指定使用Symfony原理进行迁移所需要的架构?

php symfony doctrine-orm doctrine
1个回答
1
投票

在学说捆绑配置中使用此配置

doctrine_migrations:
    ...
    table_name: myschema.migration_version
    ...

https://symfony.com/doc/master/bundles/DoctrineMigrationsBundle/index.html#configuration中的官方文档

© www.soinside.com 2019 - 2024. All rights reserved.