feat(auth): implement Google OAuth integration with user authentication and token exchange

This commit is contained in:
2026-07-22 13:43:14 -03:00
parent 855ac13990
commit 873855c85a
10 changed files with 272 additions and 2 deletions

View File

@@ -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('users', function (Blueprint $table): void {
$table->string('google_id')->nullable()->unique()->after('email');
});
}
public function down(): void
{
Schema::table('users', function (Blueprint $table): void {
$table->dropUnique(['google_id']);
$table->dropColumn('google_id');
});
}
};