laravel mirattion table code example
Example 1: how to change existing migration laravel
php artisan make:migration update_user_guide_in_product_translations_table
Example 2: laravel 8 foreign key migration
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
Schema::table('posts', function (Blueprint $table) {
$table->unsignedBigInteger('user_id');
$table->foreign('user_id')->references('id')->on('users');
});