File size: 832B
<?php
declare(strict_types=1);
use App\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
final class CreateBlacklistTable extends Migration
{
/**
* Migrate Up.
*/
public function up(): void
{
if (! $this->schema->hasTable('blacklist')) {
$this->schema->create('blacklist', function (Blueprint $table) {
$table->increments('id');
$table->string('type', 30);
$table->string('value', 100);
$table->integer('user_id');
$table->integer('created_at');
$table->index('type');
$table->index('value');
});
}
}
/**
* Migrate Down.
*/
public function down(): void
{
$this->schema->dropIfExists('blacklist');
}
}