You're looking for migrate:fresh
. Please note that this will wipe all data and structure first. But it sounds from your case that that's not an issue.
https://laravel.com/docs/8.x/migrations#drop-all-tables-migrate
If your project use migrations you can run them. The command is: php artisan migrate
for that you need to have your database connection configured.
By default the migrations files are placed in the database/migrations
directory.
If the project doesn't use migrations it will be really difficult.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community