我如何将理论迁移用于多个不同的数据库

时间:2019-08-13 14:30:10

标签: symfony doctrine-migrations

我尝试迁移多个数据库,但是所有表都将出现在所有数据库中

我尝试创建doctrine_migrations_new.yaml,但是名称空间的抛出错误

db_1 tables from entity: [user, etc, etc1]
db_2 tables from entity: [room, etc2, etc3]

我相信:

db_1 tables: [user, etc, etc1]
db_2 tables: [room, etc2, etc3]

我在第一次迁移时收到:

db_1 tables: [user, etc, etc1]
db_2 tables: [room, user, etc, etc1, etc2, etc3]

我在第二次迁移时收到:

db_1 tables: [room, user, etc, etc1, etc2, etc3]
db_2 tables: [room, user, etc, etc1, etc2, etc3]

0 个答案:

没有答案