This commit is contained in:
2021-01-09 18:46:18 +09:00
parent f327b14fca
commit 9efb326b5f
14 changed files with 46 additions and 678 deletions

View File

@@ -1,32 +0,0 @@
<?php
namespace App\Models\Fleets;
use Illuminate\Database\Eloquent\Model;
class AllianceFleet extends Model
{
/**
* Table Name
*/
protected $table = 'alliance_fleets';
/**
* Timestamps
*/
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'fleet_id',
'fleet_commander_id',
'fleet_commander_name',
'member_count',
'fleet_opened_time',
'fleet_closed_time',
];
}

View File

@@ -1,31 +0,0 @@
<?php
namespace App\Models\Fleets;
use Illuminate\Database\Eloquent\Model;
class AllianceFleetMember extends Model
{
/**
* Table Name
*/
protected $table = 'alliance_fleet_members';
/**
* Timestamps
*/
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'fleet_id',
'character_id',
'character_name',
'fleet_joined_time',
'fleet_leaved_time',
];
}

View File

@@ -25,6 +25,7 @@ class RentalMoonInvoice extends Model
'character_name',
'corporation_id',
'corporation_name',
'invoice_id',
'rental_moons',
'invoice_amount',
'due_date',