Files
newznab-tmux/database/migrations/2014_02_01_311070_create_firewall_table.php
T
2020-02-05 17:49:39 +00:00

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');
}
}