Edit file File name : 2024_02_05_190115_create_shopify_tokens_table.php Content :<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { public function up() { Schema::create('shops', function (Blueprint $table) { $table->id(); $table->string('shop_name')->unique(); $table->string('api_token'); $table->timestamps(); }); } public function down() { Schema::dropIfExists('shops'); } }; Save