Вход Регистрация
Файл: database/migrations/2018_04_20_180002_create_ban_table.php
Строк: 29
<?php

declare(strict_types=1);

use 
IlluminateDatabaseMigrationsMigration;
use 
IlluminateDatabaseSchemaBlueprint;
use 
IlluminateSupportFacadesSchema;

final class 
CreateBanTable extends Migration
{
    
/**
     * Migrate Up.
     */
    
public function up(): void
    
{
        if (! 
Schema::hasTable('ban')) {
            
Schema::create('ban', function (Blueprint $table) {
                
$table->increments('id');
                
$table->ipAddress('ip');
                
$table->integer('user_id')->nullable();
                
$table->integer('created_at');

                
$table->unique('ip');
            });
        }
    }

    
/**
     * Migrate Down.
     */
    
public function down(): void
    
{
        
Schema::dropIfExists('ban');
    }
}
Онлайн: 4
Реклама