This commit is contained in:
2026-03-08 04:29:39 -05:00
parent cc63a8d4e1
commit f11ba16f2d

View File

@@ -19,15 +19,13 @@ return new class extends Migration
$table->string('character_owner_hash')->index();
$table->string('character_name');
$table->unsignedBigInteger('character_id')->unique();
$table->string('avatar');
$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();
});