2017 © Pedro PelΓ‘ez
 

library yii2-migrate

Class to simplify the writing of migrations

image

andkon/yii2-migrate

Class to simplify the writing of migrations

  • Thursday, June 22, 2017
  • by andkon13
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2,835 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 17 % Grown

The README.md

Add-on over standard migrations, which automatically creates migration rollback functions.

Надстройка Π½Π°Π΄ стандартными миграциями, ΠΏΠΎΠ·Π²ΠΎΠ»ΡΡŽΡ‰Π°Ρ автоматичСски ΡΠΎΠ·Π΄Π°Π²Π°Ρ‚ΡŒ Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΈ ΠΎΡ‚ΠΊΠ°Ρ‚Π° ΠΌΠΈΠ³Ρ€Π°Ρ†ΠΈΠΈ., (*1)

uses: ``` class m000000_000000_users extends \andkon\migrate\Migration { public function setTables() { return [ 'users' => [ 'id' => $this->primaryKey(), 'company_id' => $this->integer()->notNull(), 'position_id' => $this->integer(), 'department_id' => $this->integer(), 'login' => $this->string(255)->notNull(), 'password' => $this->string(255), 'password_salt' => $this->string(255), 'first_name' => $this->string(255), 'middle_name' => $this->string(255), ] ]; }, (*2)

public function setForeignKeys()
{
    return [
        // user
        [
            'user'    => 'company_id',
            'company' => 'id',
        ],
        [
            'user'     => 'position_id',
            'position' => 'id',
            'delete'   => 'RESTRICT',
        ],
    ];
}

}, (*3)

The Versions

22/06 2017

dev-master

9999999-dev

Class to simplify the writing of migrations

  Sources   Download

proprietary

The Requires

  • php >=5.4.0

 

by Andrey Konenkov

21/06 2017

1.1.3

1.1.3.0

Class to simplify the writing of migrations

  Sources   Download

proprietary

The Requires

  • php >=5.4.0

 

by Andrey Konenkov

21/06 2017

1.2.2

1.2.2.0

Class to simplify the writing of migrations

  Sources   Download

proprietary

The Requires

  • php >=5.4.0

 

by Andrey Konenkov

21/06 2017

1.1.2

1.1.2.0

Class to simplify the writing of migrations

  Sources   Download

proprietary

The Requires

  • php >=5.4.0

 

by Andrey Konenkov

20/06 2017

1.2.1

1.2.1.0

Class to simplify the writing of migrations

  Sources   Download

proprietary

The Requires

  • php >=5.4.0

 

by Andrey Konenkov

20/06 2017

1.2.0

1.2.0.0

Class to simplify the writing of migrations

  Sources   Download

proprietary

The Requires

  • php >=5.4.0

 

by Andrey Konenkov

28/04 2017

1.1.1

1.1.1.0

Класс для упрощСния написания ΠΌΠΈΠ³Ρ€Π°Ρ†ΠΈΠΉ

  Sources   Download

proprietary

The Requires

 

by Andrey Konenkov

28/03 2017

1.1.0

1.1.0.0

Класс для упрощСния написания ΠΌΠΈΠ³Ρ€Π°Ρ†ΠΈΠΉ

  Sources   Download

proprietary

The Requires

 

by Andrey Konenkov