wilwade / gii-migration
Yii2 Gii Migration Generator
Installs: 13 129
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 2
Open Issues: 0
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2024-11-05 04:04:58 UTC
README
A Yii2 Gii Code Generator to create basic new table migrations easily.
Installation
The preferred way to install this extension is through composer.
"wilwade/gii-migration": "dev-master"
Usage
//if your gii modules configuration looks like below: $config['modules']['gii'] = 'yii\gii\Module'; // Replace this line
//Add this into common/config/main-local.php $config['modules']['gii'] = [ 'class' => 'yii\gii\Module', 'generators' => [ 'giiMigration' => [ 'class' => 'wilwade\giiMigration\generators\migration\Generator', //Optional: 'defaultColumns' => [], 'baseClass' => 'yii\db\Migration', ], ], ],
Optional Config
- defaultColumns: Used to have an array of columns that will be added if the include default columns checkbox is checked
- baseClass: Used if you want to extend something besides the default Migration class