Commands.app

php artisan migrate

Database

Run database migrations

Options & Flags
Available options for this command
--seed

Run seeders after migration

--force

Force migrations in production

--pretend

Show SQL without executing

Examples
Common usage examples

Run all pending migrations

php artisan migrate

Run migrations and seed database

php artisan migrate --seed

Drop all tables and re-migrate with seed

php artisan migrate:fresh --seed
Related Commands
You might also find these useful