removed market group model

removed market price model
added command for GetEveRegions to be able to get all of the eve regional data into the database from time to time.
This commit is contained in:
2020-05-15 02:51:46 -05:00
parent a84ea90c79
commit 5b746a3e22
2 changed files with 0 additions and 56 deletions

View File

@@ -1,28 +0,0 @@
<?php
namespace App\Models\Market;
use Illuminate\Database\Eloquent\Model;
class MarketGroup extends Model
{
//Table Name
protected $table = 'market_groups';
//Timestamps
public $timestamps = true;
/**
* Items which are mass assignable
*
* @var array
*/
protected $fillable = [
'group',
'description',
'market_group_id',
'name',
'parent_group_id',
'types',
];
}

View File

@@ -1,28 +0,0 @@
<?php
namespace App\Models\Market;
use Illuminate\Database\Eloquent\Model;
class MarketPrice extends Model
{
//Table Name
protected $table = 'market_prices';
//Timestamps
public $timestamps = true;
/**
* Items which are mass assignable
*
* @var array
*/
protected $fillable = [
'type_id',
'adjusted_price',
'average_price',
'lowest_price',
'highest_price',
'order_count',
];
}