mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
37 lines
746 B
PHP
37 lines
746 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateFirewallTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migration.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('firewall', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
|
|
$table->string('ip_address', 39)->unique()->index();
|
|
|
|
$table->boolean('whitelisted')->default(false); /// default is blacklist
|
|
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migration.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('firewall');
|
|
}
|
|
}
|