add migration and model

This commit is contained in:
shibafu
2020-08-10 20:38:38 +09:00
parent ca070e773a
commit f715e7feee
2 changed files with 61 additions and 0 deletions

24
app/ContentProvider.php Normal file
View File

@@ -0,0 +1,24 @@
<?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',
];
}