Skip to content

Commit

Permalink
Fix migration columns to use text instead of string
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Oct 29, 2024
1 parent cfbf422 commit b08d59f
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 b08d59f

Please sign in to comment.