CrawlerListenBlacklist.php 316 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php

namespace App\Models;

use App\Helpers\Constants;
use Illuminate\Database\Eloquent\Model;

class CrawlerListenBlacklist extends Model
{
    protected $table = Constants::TABLE_CRAWLER_LISTEN_BLACKLISTS;

    public $timestamps = true;

    protected $fillable = [
        'track_id', 'src', 'title'
    ];

}