From decadea13568e363c1d0b7d23a1a829ebdc01aa3 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 3 May 2023 19:47:09 +1000 Subject: [PATCH] Updates for account controller --- database/migrations/2023_05_03_023956_add_shopify_user_id.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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(); }); - } /**