Laravel Specific Table Migration & Seeder
Nov 6 · 1 min read
Tips for run migration and seeder specific file for Laravel Framework
Migrate
php artisan migrate --path=/database/migrations/fileName.phpRoolback
php artisan migrate:rollback --path=/database/migrations/fileName.phpRefresh
php artisan migrate:refresh --path=/database/migrations/fileName.phpSeeder
php artisan db:seed --class=classNameTableSeederThanks :D

