Files
newznab-tmux/app/Models/Sharing.php
T
2018-04-23 08:54:49 +02:00

29 lines
384 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Sharing extends Model
{
/**
* @var string
*/
protected $table = 'sharing';
/**
* @var string
*/
protected $primaryKey = 'site_guid';
/**
* @var bool
*/
public $timestamps = false;
/**
* @var bool
*/
protected $dateFormat = false;
}