created fleetactivity model

This commit is contained in:
2018-12-03 13:56:06 -06:00
parent 10f9be7746
commit 971a9efcc6

View File

@@ -1,10 +1,36 @@
<?php
namespace App;
namespace App\Models\Fleet;
use Illuminate\Database\Eloquent\Model;
class FleetActivity extends Model
{
//
// Table Name
protected $table = 'fleet_activity_tracking';
// Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'fleetId',
'character_id',
'character_name',
'corporation_id',
'corporation_name',
'region',
'system',
'ship',
'ship_type',
'created_at',
'updated_at',
];
}