uzproger / yii2-migrator
Yii2 Database migration extension which helps to migrate with multiple directories.
Package info
github.com/uzproger/yii2-migrator
Type:yii2-extension
pkg:composer/uzproger/yii2-migrator
1.0.1
2015-05-24 15:27 UTC
Requires
- php: >=5.4.0
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-04-01 15:52:08 UTC
README
It helps to migrate with multiple directories.
Installation
add to the require section of your composer.json:
"uzproger/migrator": "*",
add to the console.php:
... 'controllerMap' => [ 'migrate' => [ 'class' => 'uzproger\migrator\MigrateController', 'additionalPaths' => [ [ 'name' => 'First Migration Path Name', 'path' => 'First Migration Full Path', ], [ 'name' => 'Second Migration Path Name', 'path' => 'Second Migration Full Path', ], ... ], ], ... ],