removed some unused classes

This commit is contained in:
2019-12-11 22:37:06 -06:00
parent 4848ef379a
commit 32cfb6b93c
5 changed files with 0 additions and 196 deletions
-43
View File
@@ -1,43 +0,0 @@
<?php
namespace App\Models\Contracts;
use Illuminate\Database\Eloquent\Model;
class EveContract extends Model
{
//Table name
public $table = 'eve_contracts';
//Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'contract_id',
'acceptor_id',
'assignee_id',
'availability',
'buyout',
'collateral',
'date_accepted',
'date_completed',
'date_expired',
'date_issued',
'days_to_complete',
'end_location_id',
'for_corporation',
'issuer_corporation_id',
'issuer_id',
'price',
'reward',
'start_location_id',
'status',
'title',
'volume',
];
}
-17
View File
@@ -1,17 +0,0 @@
<?php
namespace App\Models\Market;
use Illuminate\Database\Eloquent\Model;
class MarketOrder extends Model
{
// Table Name
protected $table = 'MarketOrders';
// Timestamps
public $timestamps = false;
// Primary Key
public $primaryKey = 'order_id';
}