tissue/app/ContentProvider.php
shibafu 407fd192bd Revert "Revert "Release 20200823.1100""
This reverts commit 1b5f690f4e3f58b38562d29384b571edb7aecdb3.
2020-08-30 13:57:02 +09:00

25 lines
412 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ContentProvider extends Model
{
public $incrementing = false;
protected $primaryKey = 'host';
protected $keyType = 'string';
protected $fillable = [
'host',
'robots',
'robots_cached_at',
];
protected $dates = [
'created_at',
'updated_at',
'robots_cached_at',
];
}