laravel create migration from existing database code example

Example 1: create database from migration laravel for all

php artisan migrate:refresh

php artisan migrate:refresh --seed

Example 2: laravel create migration

php artisan make:migration add_votes_to_users_table --table=users

php artisan make:migration create_users_table --create=users

Example 3: create migration with model laravel

php artisan make:model Settings --migration

Example 4: Generate Laravel Migrations from an existing database

composer require --dev "xethron/migrations-generator"

Tags:

Misc Example