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',
];
}

View File

@ -0,0 +1,37 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateContentProvidersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('content_providers', function (Blueprint $table) {
$table->string('host');
$table->text('robots')->nullable();
$table->timestamp('robots_cached_at');
$table->boolean('is_blocked')->default(false);
$table->integer('access_interval_sec')->default(5);
$table->timestamps();
$table->primary('host');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('content_providers');
}
}