dn23rus / yii2-extended-migration
Yii2 Extended Migration
Package info
github.com/dn23rus/yii2-extended-migration
Type:yii2-extension
pkg:composer/dn23rus/yii2-extended-migration
v1.0.3
2015-12-14 20:43 UTC
Requires
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-02-19 00:11:14 UTC
README
Yii2 Extended Migration extension provides additional functionality to migration.
##Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist dn23rus/yii2-extended-migration "1.*"
or add
"dn23rus/yii2-extended-migration": "1.*"
to the require section of your composer.json file.
##Usage
Once the extension is installed, add this config to your configs/main.php :
'controllerMap' => [ // ... 'migrate' => [ 'class' => yii\console\controllers\MigrateController::class, 'templateFile' => '@vendor/dn23rus/yii2-extended-migration/views/migration.php', ], // ... ],