From 81ae45945fc331e8b61b3f1cc63c65deda8bbfee Mon Sep 17 00:00:00 2001 From: Joel Butcher Date: Wed, 17 Mar 2021 17:25:52 +0000 Subject: [PATCH] update token and refesh token field lengths --- .../2020_12_22_000000_create_connected_accounts_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/2020_12_22_000000_create_connected_accounts_table.php b/database/migrations/2020_12_22_000000_create_connected_accounts_table.php index 1e40c49e..1ba66171 100644 --- a/database/migrations/2020_12_22_000000_create_connected_accounts_table.php +++ b/database/migrations/2020_12_22_000000_create_connected_accounts_table.php @@ -23,9 +23,9 @@ public function up() $table->string('email')->nullable(); $table->string('telephone')->nullable(); $table->string('avatar_path')->nullable(); - $table->string('token'); + $table->string('token', 1000); $table->string('secret')->nullable(); // OAuth1 - $table->string('refresh_token')->nullable(); // OAuth2 + $table->string('refresh_token', 1000)->nullable(); // OAuth2 $table->dateTime('expires_at')->nullable(); // OAuth2 $table->timestamps(); });