Files
newznab-tmux/database/migrations/2014_02_01_311070_create_firewall_table.php
T
2023-03-30 14:15:45 +00:00

33 lines
704 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.
*/
public function up(): void
{
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.
*/
public function down(): void
{
Schema::dropIfExists('firewall');
}
}