34 lines
606 B
PHP
34 lines
606 B
PHP
<?php
|
|
|
|
namespace App\Models\Lookup;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AllianceLookup extends Model
|
|
{
|
|
// Table Name
|
|
protected $table = 'alliance_lookup';
|
|
|
|
//Primary Key
|
|
public $primaryKey = 'alliance_id';
|
|
|
|
// Timestamps
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'alliance_id',
|
|
'creator_corporation_id',
|
|
'creator_id',
|
|
'date_founded',
|
|
'executor_corporation_id',
|
|
'faction_id',
|
|
'name',
|
|
'ticker',
|
|
];
|
|
}
|