updated several jobs. removed the task for starting and stoppinig jobs. just seems to be unnecessary data

This commit is contained in:
2021-01-17 22:52:35 +09:00
parent 23b78d709f
commit 997e6a9cde
46 changed files with 663 additions and 499 deletions
+39
View File
@@ -0,0 +1,39 @@
<?php
namespace App\Models\Structure;
use Illuminate\Database\Eloquent\Model;
class Asset extends Model
{
/**
* Required scope:
* esi-assets.read_corporation_assets.v1
*/
//Table Name
public $table = 'alliance_assets';
//Timestamps
public $timestamps = true;
//Primary Key
public $primaryKey = 'id';
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'is_blueprint_copy',
'is_singleton',
'item_id',
'location_flag',
'location_id',
'location_type',
'quantity',
'type_id',
'updated_at',
];
}