From 0c468b91f35ea9a5ae4d206e73417c00b5a1d3c0 Mon Sep 17 00:00:00 2001 From: Mike Bronner Date: Fri, 4 Sep 2020 10:30:48 -0700 Subject: [PATCH] Update 2019_10_13_000000_create_social_credentials_table.php --- .../2019_10_13_000000_create_social_credentials_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2019_10_13_000000_create_social_credentials_table.php b/database/migrations/2019_10_13_000000_create_social_credentials_table.php index 9108192..e0011a3 100644 --- a/database/migrations/2019_10_13_000000_create_social_credentials_table.php +++ b/database/migrations/2019_10_13_000000_create_social_credentials_table.php @@ -12,7 +12,7 @@ public function up() $table->bigInteger("user_id"); $table->timestamps(); - $table->string("access_token")->nullable(); + $table->text("access_token")->nullable(); $table->string("avatar")->nullable(); $table->string("email")->nullable(); $table->string("expires_at")->nullable();