The main purpose is to extend Laravel 5 (5.1, 5.2) migrations, by adding ability to run migration from certain file.
74
0
1
Package Data
Maintainer Username: dushevadnqka1
Maintainer Contact: dushevadnqka@gmail.com (dushevadnqka)
Package Create Date: 2016-06-18
Package Last Update: 2018-02-11
Language: PHP
License: MIT
Last Refreshed: 2024-04-27 03:11:51
Package Statistics
Total Downloads: 74
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Migmag Laravel migrations extender

Install

  • Version 2.0 (Compatibility with laravel 5.2) By adding:
   "dushevadnqka/migmag": "2.*"
  • Version 1.0 (Compatibility with laravel 5.1) By adding:
   "dushevadnqka/migmag": "1.*"

on your composer json file.

Add this line to your config/app.php (in Providers array)

\Dushevadnqka\Migmag\Providers\MigmagServiceProvider::class

To exec migration from certain file:

    php artisan migmag:migrate

and then as a answer type the path to your migration file without extension.

or

    php artisan migmag:migrate --path=path/to/your/migration-file

To get a migration status by certain migration file:

    php artisan migmag:migrate:status

and then as a answer type the path to your migration file without extension.

or

    php artisan migmag:migrate:status --path=path/to/your/migration-file

To make a migration reset by certain migration name:

    php artisan migmag:migrate:reset

and then as a answer type the name of your migration file without extension.

or

    php artisan migmag:migrate:reset --migration=migration-file-name

To make a migration refresh for certain migration:

    php artisan migmag:migrate:refresh

and then as a answer type the path to your migration file without extension.

or

    php artisan migmag:migrate:refresh --path=path/to/your/migration-file

Enjoy!