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

declare(strict_types=1);

use 
IlluminateDatabaseMigrationsMigration;
use 
IlluminateDatabaseSchemaBlueprint;
use 
IlluminateSupportFacadesSchema;

final class 
CreateErrorsTable extends Migration
{
    
/**
     * Migrate Up.
     */
    
public function up(): void
    
{
        if (! 
Schema::hasTable('errors')) {
            
Schema::create('errors', function (Blueprint $table) {
                
$table->increments('id');
                
$table->integer('code');
                
$table->string('request')->nullable();
                
$table->string('referer')->nullable();
                
$table->integer('user_id')->nullable();
                
$table->string('message')->nullable();
                
$table->ipAddress('ip');
                
$table->string('brow'25);
                
$table->integer('created_at');

                
$table->index(['code''created_at']);
            });
        }
    }

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