Skip to content

Commit

Permalink
Merge branch 'dev' into OAuthRemember
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelio authored Jul 3, 2024
2 parents 3d4d82d + b83c47f commit 7fe4cb4
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class() extends Migration {
public function up(): void
{
Schema::table('user_oauth_tokens', function (Blueprint $table) {
$table->text('token')->change();
$table->text('refresh_token')->change();
});
}

public function down(): void
{
Schema::table('user_oauth_tokens', function (Blueprint $table) {
$table->string('token')->change();
$table->string('refresh_token')->change();
});
}
};

0 comments on commit 7fe4cb4

Please sign in to comment.