mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Add DnzbFailure model
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
2017-08-04 DariusIII
|
||||
* Chg: Add DnzbFailure model
|
||||
* Chg: Update CouchPotato class
|
||||
* Chg: Update Contents class
|
||||
* Chg: Update CollectionsCleaning class
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class DnzbFailure extends Model
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $table = 'dnzb_failures';
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
protected $dateFormat = false;
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
public $timestamps = false;
|
||||
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
public $incrementing = false;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = ['release_id', 'users_id', 'failed'];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user