gal-digital-gmbh/pimcore-simple-migration

简化pimcore迁移过程

1.0.0 2022-05-11 15:22 UTC

This package is auto-updated.

Last update: 2024-09-11 21:03:41 UTC


README

提供辅助命令,以命名空间为单位执行doctrine migrate

需求

  • Pimcore >= 10.4
  • 项目中的配置文件 PIMCORE_PROJECT_ROOT . '/config/packages/doctrine-migrations.yaml'

安装

需要该包

composer require gal-digital-gmbh/pimcore-simple-migration

命令

php bin/console migrate

Please select namespace
  [0] all
  [1] App\Migrations
  [2] App\NamespaceX\Migrations

回滚命名空间的一个迁移

php bin/console migrate:prev

Please select namespace
  [0] App\Migrations
  [1] App\NamespaceX\Migrations

迁移命名空间的一个迁移

php bin/console migrate:next

Please select namespace
  [0] App\Migrations
  [1] App\NamespaceX\Migrations

在您选择的命名空间中生成新的迁移类

php bin/console migration:generate

Please select namespace
  [0] App\Migrations
  [1] App\NamespaceX\Migrations