Answers for "migrate particular file laravel"

PHP
2

migrate single file in laravel

php artisan migrate --path=/database/migrations/my_migration.php
Posted by: Guest on January-05-2021
11

migrate specific migration file laravel

php artisan migrate:refresh --path=/database/migrations/2021_06_23_093317_create_users_table.php
Posted by: Guest on June-23-2021
1

migrate specific file laravel

On Mac
php artisan migrate --path=/database/migrations/2022_05_23_231838_create_example_table.php
Posted by: Guest on May-23-2022
0

migrate particular file laravel

php artisan migrate:refresh --path="database/migrations/Your_Migration_File_Name_table.php"
Posted by: Guest on May-25-2022

Code answers related to "migrate particular file laravel"

Browse Popular Code Answers by Language