30 lines
483 B
PHP
30 lines
483 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CitadelLookup extends Model
|
|
{
|
|
//Table Name
|
|
public $table = 'citadel_lookup';
|
|
|
|
//Timestamps
|
|
public $timestamps = true;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'structure_id',
|
|
'name',
|
|
'position_x',
|
|
'position_y',
|
|
'position_z',
|
|
'solar_system_id',
|
|
'type_id',
|
|
];
|
|
}
|