Skip to content

Commit 7337eb9

Browse files
committed
Merge branch 'provider-tokens'
2 parents b5fb3a0 + b08d59f commit 7337eb9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/migrations/2024_10_27_131354_add_provider_token_columns_to_users_table.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ public function up(): void
1313
{
1414
Schema::table('users', function (Blueprint $table) {
1515
$table->after('provider_name', function (Blueprint $table) {
16-
$table->string('provider_access_token')->nullable();
17-
$table->string('provider_refresh_token')->nullable();
16+
$table->text('provider_access_token')->nullable();
17+
$table->text('provider_refresh_token')->nullable();
1818
});
1919
});
2020
}

0 commit comments

Comments
 (0)