From e338aa07aab88c9ca9ffe5c78e55daa3bb6922a5 Mon Sep 17 00:00:00 2001 From: Edward Yang Date: Tue, 27 Dec 2022 11:25:26 +0800 Subject: [PATCH] change customer_socials:access_token to text --- .../Migrations/2022_10_13_100354_create_customer_socials.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Social/Migrations/2022_10_13_100354_create_customer_socials.php b/plugins/Social/Migrations/2022_10_13_100354_create_customer_socials.php index 7ffcd18c..796a242c 100644 --- a/plugins/Social/Migrations/2022_10_13_100354_create_customer_socials.php +++ b/plugins/Social/Migrations/2022_10_13_100354_create_customer_socials.php @@ -19,7 +19,7 @@ return new class extends Migration $table->string('provider'); $table->string('user_id'); $table->string('union_id'); - $table->string('access_token'); + $table->text('access_token'); $table->text('extra'); $table->timestamps(); });