Skip to content

Commit

Permalink
update token and refesh token field lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Butcher committed Mar 17, 2021
1 parent 1beef89 commit 81ae459
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
Expand Down

0 comments on commit 81ae459

Please sign in to comment.