laravel connect post table to user table code example
Example 1: change existing migration laravel
php artisan make:migration update_description_in_products_table
Example 2: laravel migration
$table->string('name', 100);
php artisan make:migration update_description_in_products_table
$table->string('name', 100);