36 lines
652 B
PHP
36 lines
652 B
PHP
|
<?php namespace jasonwilliams\feed\Models;
|
||
|
|
||
|
use Model;
|
||
|
|
||
|
/**
|
||
|
* Model
|
||
|
*/
|
||
|
class Links extends Model
|
||
|
{
|
||
|
use \October\Rain\Database\Traits\Validation;
|
||
|
|
||
|
/*
|
||
|
* Disable timestamps by default.
|
||
|
* Remove this line if timestamps are defined in the database table.
|
||
|
*/
|
||
|
public $timestamps = false;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @var string The database table used by the model.
|
||
|
*/
|
||
|
public $table = 'jasonwilliams_feed_links';
|
||
|
|
||
|
protected $fillable = ['addr', 'display'];
|
||
|
|
||
|
/**
|
||
|
* @var array Validation rules
|
||
|
*/
|
||
|
public $rules = [
|
||
|
];
|
||
|
|
||
|
public $belongsTo = [
|
||
|
'links' => 'jasonwilliams\feed\Models\FeedItem'
|
||
|
];
|
||
|
}
|