Updates for account controller

This commit is contained in:
David Bomba 2023-05-03 19:47:09 +10:00
parent 0acb368c21
commit decadea135

View File

@ -28,7 +28,7 @@ return new class extends Migration
}); });
Schema::table('users', function (Illuminate\Database\Schema\Blueprint $table) { 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){ 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(); $table->string('shopify_access_token')->index()->nullable();
}); });
} }
/** /**