Update TvInfo model

This commit is contained in:
DariusIII
2017-12-15 14:48:40 +01:00
parent 5d193b2f98
commit 52bb15db6d
+29 -1
View File
@@ -6,5 +6,33 @@ use Illuminate\Database\Eloquent\Model;
class TvInfo extends Model
{
//
/**
* @var string
*/
protected $table = 'tv_info';
/**
* @var bool
*/
public $incrementing = false;
/**
* @var array
*/
protected $guarded = [];
/**
* @var bool
*/
public $timestamps = false;
/**
* @var bool
*/
protected $dateFormat = false;
/**
* @var string
*/
protected $primaryKey = 'videos_id';
}