Files
alliance-services/app/Models/Lookup/CharacterLookup.php
2026-03-10 02:10:28 -05:00

39 lines
697 B
PHP

<?php
namespace App\Models\Lookup;
use Illuminate\Database\Eloquent\Model;
class CharacterLookup extends Model
{
// Table Name
protected $table = 'character_lookup';
//Primary Key
public $primaryKey = 'character_id';
// Timestamps
public $timestamps = false;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'character_id',
'alliance_id',
'ancestry_id',
'birthday',
'bloodline_id',
'corporation_id',
'description',
'faction_id',
'gender',
'name',
'race_id',
'security_status',
'title',
];
}