Extension on top of Phinx to make migrations in Laravel 5 style with good IDE support
vovanmix/phinx-laravel-style is a Laravel package for extension on top of phinx to make migrations in laravel 5 style with good ide support.
It currently has 0 GitHub stars and 118 downloads on Packagist (latest version v0.4).
Install it with composer require vovanmix/phinx-laravel-style.
Discover more Laravel packages by vovanmix
or browse all Laravel packages to compare alternatives.
Last updated
Init after the first installation:
cp ./vendor/vovanmix/phinx-laravel-style/src/phinx-settings.php ./phinx.php
Generate migration:
php vendor/bin/phinx create --class=default MyNewMigration
Migrate:
php vendor/bin/phinx migrate
Rollback:
php vendor/bin/phinx rollback