Files
w4rpservices/app/Models/Corporation/CorpStructure.php
2019-02-27 22:23:21 -06:00

34 lines
553 B
PHP

<?php
namespace App\Models\Corporation;
use Illuminate\Database\Eloquent\Model;
class CorpStructure extends Model
{
/**
* Table Name
*/
protected $table = 'CorpStructures';
/**
* Timestamps
*/
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'character_id',
'corporation_id',
'corporation_name',
'region',
'system',
'structure_name',
'structure_type',
];
}