Skip to content

Commit

Permalink
Merge branch 'provider-tokens'
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Oct 29, 2024
2 parents b5fb3a0 + b08d59f commit 7337eb9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->after('provider_name', function (Blueprint $table) {
$table->string('provider_access_token')->nullable();
$table->string('provider_refresh_token')->nullable();
$table->text('provider_access_token')->nullable();
$table->text('provider_refresh_token')->nullable();
});
});
}
Expand Down

0 comments on commit 7337eb9

Please sign in to comment.