Файл: database/migrations/2018_04_20_180016_create_errors_table.php
Строк: 33
<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
return new class extends Migration {
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->dateTime('created_at')->nullable();
$table->index(['code', 'created_at']);
});
}
}
public function down(): void
{
Schema::dropIfExists('errors');
}
};