Laravel Migration Tricks

Browse latest tricks and tips on Laravel Migration.

Laravel delete migration

How to delete a migration file in Laravel?Sometime we accidentally create a migration in laravel later we identify the particular migration is not required. In this post I am going ...
published on : 17 hours ago 12 Comments

PHP artisan migrate command

How to Run migrations in LaravelRunning migration in Laravel is easy task. Below are few artisan commands for to run database migration in Laravel Framework. 1. php artisan migrat ...
published on : 1 hour ago 12 Comments

Laravel migration change column type

How to change column type in Laravel MigrationIn this trick we will see how to change column data type for example we are going to change a field from varchar to longText. To do th ...
published on : 2 days ago 12 Comments