php artisan create table command code example
Example 1: add column in laravel migration
php artisan make:migration add_paid_to_users_table --table=users
Example 2: migrate command
golang migrate create
migrate create -ext sql -dir db/migration -seq init_schema
eg :migrate create -ext sql events
Example 3: create table laravel
php artisan make:migration create_employeeDetails_table --create=Employee
//goto create_employeeDetails_table file and add fields in table
php artisan migrate