Answers for "laravel migrate file"

PHP
5

migration rollback

php artisan migrate:rollback
Posted by: Guest on May-04-2020
0

re migrate laravel

Try:
composer dump-autoload
php artisan config:cache

If not working also try:
php artisan migrate:refresh.
Posted by: Guest on July-02-2020
1

make migration file in laravel

php artisan make:migration create_flights_table
Posted by: Guest on February-16-2021
0

what is the use of migration file in laravel

Simply put, Laravel migration is a way that allows you to create a table in your database, without actually going to the database manager such as phpmyadmin or sql lite or whatever your manager is
Posted by: Guest on December-10-2020

Browse Popular Code Answers by Language