This commit is contained in:
2026-03-08 05:12:00 -05:00
parent fb518c72ac
commit d37412e364
2 changed files with 2 additions and 4 deletions

View File

@@ -35,7 +35,8 @@ class EveLoginController extends Controller
{
$ssoUser = Socialite::driver('eveonline')->user();
dd($ssoUser->token);
$token = $ssoUser->token;
dd($token);
try {
$ssoUser = Socialite::driver('eveonline')->user();

View File

@@ -15,7 +15,6 @@ return new class extends Migration
if(!Schema::hasTable('users')) {
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('character_owner_hash')->index();
$table->string('character_name');
$table->unsignedBigInteger('character_id')->unique();
@@ -23,8 +22,6 @@ return new class extends Migration
$table->text('token');
$table->text('refresh_token')->nullable();
$table->integer('expiresIn')->nullable();
// As requested: "user" holds jwt. (Note: naming a column "user" can be confusing later;
// consider "jwt" in future refactors, but this honors your spec.)
$table->text('user_jwt')->nullable();
$table->rememberToken();
$table->timestamps();