diff --git a/database/migrations/2023_05_03_023956_add_shopify_user_id.php b/database/migrations/2023_05_03_023956_add_shopify_user_id.php index 9c8d65b38ac9..77ef774d233f 100644 --- a/database/migrations/2023_05_03_023956_add_shopify_user_id.php +++ b/database/migrations/2023_05_03_023956_add_shopify_user_id.php @@ -28,7 +28,7 @@ return new class extends Migration }); Schema::table('users', function (Illuminate\Database\Schema\Blueprint $table) { - $table->unsignedInteger('shopify_user_id')->index()->nullable(); + $table->unsignedBigInteger('shopify_user_id')->index()->nullable(); }); Schema::table('companies', function(Illuminate\Database\Schema\Blueprint $table){ @@ -36,7 +36,6 @@ return new class extends Migration $table->string('shopify_access_token')->index()->nullable(); }); - } /**