[当我使用./bin/console doctrine:migrations:migrate
命令时,我的迁移适用于public
模式。但是在我的实体中,我设置了另一个模式:
/**
* @ORM\Entity(repositoryClass="App\Repository\MyEntityRepository")
* @ORM\Table(schema="schemaname", name="entity")
*/
class MyEntity
如何指定使用Symfony原理进行迁移所需要的架构?
在学说捆绑配置中使用此配置
doctrine_migrations:
...
table_name: myschema.migration_version
...
https://symfony.com/doc/master/bundles/DoctrineMigrationsBundle/index.html#configuration中的官方文档