Files
newznab-tmux/app/Models/UserRequest.php
T
DariusIII 24fa162413 Apply fixes from StyleCI
[ci skip] [skip ci]
2017-08-31 09:31:28 +00:00

26 lines
394 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UserRequest extends Model
{
/**
* @var string
*/
protected $table = 'user_requests';
/**
* @var bool
*/
protected $dateFormat = false;
/**
* @var bool
*/
public $timestamps = false;
protected $fillable = ['users_id', 'request', 'hosthash', 'timestamp'];
}