交响乐 4.4。 运行 捆绑包安装后的迁移
Symfony 4.4. Run migrations after bundle install
我尝试为 Symfony 4.4 创建一个 Bundle,它必须包含自己的迁移。
如何创建条令迁移并在项目中启用它们?
安装捆绑包后是否可以 运行 doctrine:shema:update
使用捆绑包迁移?
在 Symfony 4.4 中不再有捆绑包,它已被弃用。但是,如果您真的需要使用 bundle,请查看 https://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html#configuration
在您的配置中:
doctrine_migrations:
# List of namespace/path pairs to search for migrations, at least one required
migrations_paths:
'App\Migrations': '%kernel.project_dir%/src/App'
'AnotherApp\Migrations': '/path/to/other/migrations'
'SomeBundle\Migrations': '@SomeBundle/Migrations'
我尝试为 Symfony 4.4 创建一个 Bundle,它必须包含自己的迁移。
如何创建条令迁移并在项目中启用它们?
安装捆绑包后是否可以 运行 doctrine:shema:update
使用捆绑包迁移?
在 Symfony 4.4 中不再有捆绑包,它已被弃用。但是,如果您真的需要使用 bundle,请查看 https://symfony.com/doc/current/bundles/DoctrineMigrationsBundle/index.html#configuration 在您的配置中:
doctrine_migrations:
# List of namespace/path pairs to search for migrations, at least one required
migrations_paths:
'App\Migrations': '%kernel.project_dir%/src/App'
'AnotherApp\Migrations': '/path/to/other/migrations'
'SomeBundle\Migrations': '@SomeBundle/Migrations'