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

README

Yii2 NOX Migration is a library with Migrations methods for Yii2.

Latest Stable Version Total Downloads Latest Unstable Version License Monthly Downloads Daily Downloads composer.lock

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.

Yii2