This commit is contained in:
2026-03-08 05:03:11 -05:00
parent 272f23f9f7
commit cd7aa1f2a4
3 changed files with 3 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ use Illuminate\Database\Eloquent\Model;
class EsiScope extends Model
{
// Table Name
protected $table = 'EsiScopes';
protected $table = 'esi_scopes';
//Primary Key
public $primaryKey = 'id';

View File

@@ -7,7 +7,7 @@ use Illuminate\Database\Eloquent\Model;
class EsiToken extends Model
{
// Table Name
protected $table = 'EsiTokens';
protected $table = 'esi_token';
//Primary Key
public $primaryKey = 'id';

View File

@@ -48,6 +48,7 @@ return new class extends Migration
$table->string('character_id');
$table->string('token');
$table->string('refresh_token');
$table->string('inserted_at');
$table->integer('expiresIn');
});
}