create new column in table migration code example
Example 1: laravel add column to existing table
php artisan migrate
Example 2: migrate to an existing table in laravel commad
php artisan make:migration add_paid_to_users_table --table=users
php artisan migrate
php artisan make:migration add_paid_to_users_table --table=users