nox-it / yii2-nox-migration
This package is abandoned and no longer maintained.
No replacement package was suggested.
Yii2 Extended Migration Toolkit
2.0.0
2020-05-03 14:50 UTC
Requires
- php: >=7.4.0
- nox-it/yii2-nox: ~2.0.0
- nox-it/yii2-nox-helpers: ~2.0.0
README
Yii2 NOX Migration is a library with Migrations methods for Yii2.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist nyx-solutions/yii2-nyx-migration "*"
or add
"nyx-solutions/yii2-nyx-migration": "*"
to the require section of your composer.json
file.
Usage
use nyx\db\Migration; class m150409_195340_site extends Migration { /** * @inheritdoc */ protected $tableName = 'site'; /** * @inheritdoc */ public function safeUp() { $columns = [ 'id' => $this->bigPrimaryKey($this->pkLength), 'name' => $this->string(2000)->notNull() ]; $this->createTable($this->getCurrentTableName(), $columns, $this->getTableOptions()); } }
License
yii2-nyx-migration is released under the BSD 3-Clause License. See the bundled LICENSE.md
for details.