This commit is contained in:
2026-03-08 05:09:03 -05:00
parent 8e0485054d
commit 16cdea54b2
@@ -46,8 +46,8 @@ return new class extends Migration
Schema::create('esi_token', function (Blueprint $table) {
$table->id();
$table->string('character_id');
$table->string('token');
$table->string('refresh_token');
$table->text('token');
$table->text('refresh_token');
$table->string('inserted_at');
$table->integer('expires_in');
});