Revolution in Laravel migration in 30 seconds!

Reza Amini
2 min readSep 14, 2021

Have you ever want to migrate a single migration in Laravel?
You need to write a huge line of words in your command line to just migrate a migration.

Or have you ever tried to refresh or reset a migration?
In some cases, the migration commands literally aren’t understandable and you may wonder what is the fresh or refresh and should I use refresh or reset or other commands and what is the difference between them?

Imagine that you have over 10 migrations and you just want to refresh just one of them, to do this you need to execute this command:

php artisan migrate:refresh --path=database/migrations/2021_09_14_153949_create_products_table.php

Hmmm, to me and lots of you it’s not enjoyable, and also it does take time to write in the command line and if we type the wrong name we may lose our data in the database.

So what should we do?

Here Migrator comes!

Migrator is a GUI migration manager for Laravel.

With Migrator, you can manage your migration as easy as possible in a beautiful user interface.

Migrator features:

  • Create new migration
  • Migrate all migrations
  • Fresh migrations
  • Drop a single migration
  • Migrate a single migration
  • Delete and drop a migration
  • See the status of migrations
  • Refresh a migration (Drop then up)
  • Show the migration data in a better way!

So we have talked about the features, let’s install Migrator in a minute.

Installing Migrator is super duper easy, you just need to run a single composer command:

composer require rezaamini-ir/migrator

Congrats! Migrator was installed successfully, now you will be to access the /migrator path in your project and if you want to change the authentication method or Migrator route you can publish the config file with this command:

php artisan vendor:publish --tag=migrator-config

Then a new file will be created in your config directory called: migrator.php and you can change the middleware which authenticates the user and also the route of the package is editable.

To read more about the Migrator package you can check out the documentation:
https://github.com/rezaamini-ir/migrator

Don’t forget to contribute to the project and Star it ⭐️ :)).

--

--

Reza Amini

A young full-stack Developer who loves Laravel and reading.