laravel migrat code example

Example 1: laravel make migrattion

php artisan make:migration create_flights_table

Example 2: fresh migrqte laravel

$ php artisan migrate:fresh

Dropped all tables successfully.
Migration table created successfully.
Migrating: 2014_10_12_000000_create_users_table
Migrated:  2014_10_12_000000_create_users_table
Migrating: 2014_10_12_100000_create_password_resets_table
Migrated:  2014_10_12_100000_create_password_resets_table

Example 3: laravel migration integer

$table->bigInteger('votes');

Example 4: create database from migration laravel for all

php artisan migrate --force

Example 5: php artisan migrat

php artisan migrate

Tags:

Misc Example