add timestamp columns to tables
This commit is contained in:
parent
55fa60d28b
commit
bf1906e215
@ -16,9 +16,16 @@ class Bidders extends Model
|
|||||||
'bidder_zip',
|
'bidder_zip',
|
||||||
'bidder_phone',
|
'bidder_phone',
|
||||||
'bidder_email',
|
'bidder_email',
|
||||||
'bidder_assigned_number'
|
'bidder_assigned_number',
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
];
|
];
|
||||||
|
|
||||||
|
protected $dates = [
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
|
];
|
||||||
|
|
||||||
public function checkout()
|
public function checkout()
|
||||||
{
|
{
|
||||||
return $this->hasMany('App\Models\Checkout', 'bidder_num', 'idbidders');
|
return $this->hasMany('App\Models\Checkout', 'bidder_num', 'idbidders');
|
||||||
|
@ -13,7 +13,14 @@ class Checkout extends Model
|
|||||||
'payment_method',
|
'payment_method',
|
||||||
'check_number',
|
'check_number',
|
||||||
'cc_transaction',
|
'cc_transaction',
|
||||||
'cc_amount'
|
'cc_amount',
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
|
];
|
||||||
|
|
||||||
|
protected $dates = [
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
];
|
];
|
||||||
|
|
||||||
public function bidders()
|
public function bidders()
|
||||||
|
@ -11,9 +11,16 @@ class Items extends Model
|
|||||||
'item_desc',
|
'item_desc',
|
||||||
'item_min_bid',
|
'item_min_bid',
|
||||||
'item_est_value',
|
'item_est_value',
|
||||||
'item_assigned_num'
|
'item_assigned_num',
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
];
|
];
|
||||||
|
|
||||||
|
protected $dates = [
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
|
];
|
||||||
|
|
||||||
public function winningBids()
|
public function winningBids()
|
||||||
{
|
{
|
||||||
return $this->belongsTo('App\Models\WinningBids', 'winning_item_num', 'iditems');
|
return $this->belongsTo('App\Models\WinningBids', 'winning_item_num', 'iditems');
|
||||||
|
@ -8,7 +8,14 @@ class PaymentMethods extends Model
|
|||||||
{
|
{
|
||||||
protected $table = 'payment_methods';
|
protected $table = 'payment_methods';
|
||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
'pm_name'
|
'pm_name',
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
|
];
|
||||||
|
|
||||||
|
protected $dates = [
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
];
|
];
|
||||||
|
|
||||||
public function checkout()
|
public function checkout()
|
||||||
|
@ -10,7 +10,14 @@ class WinningBids extends Model
|
|||||||
protected $fillable = [
|
protected $fillable = [
|
||||||
'winning_bidder_num',
|
'winning_bidder_num',
|
||||||
'winning_cost',
|
'winning_cost',
|
||||||
'winning_item_num'
|
'winning_item_num',
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
|
];
|
||||||
|
|
||||||
|
protected $dates = [
|
||||||
|
'created_at',
|
||||||
|
'updated_at'
|
||||||
];
|
];
|
||||||
|
|
||||||
public function items()
|
public function items()
|
||||||
|
Loading…
Reference in New Issue
Block a user