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