add migration and model
This commit is contained in:
parent
ca070e773a
commit
f715e7feee
24
app/ContentProvider.php
Normal file
24
app/ContentProvider.php
Normal 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',
|
||||||
|
];
|
||||||
|
}
|
@ -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');
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user