testing
This commit is contained in:
@@ -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();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user