Файл: database/migrations/2018_04_20_180000_create_logs_table.php
Строк: 29
<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
return new class extends Migration {
public function up(): void
{
if (! Schema::hasTable('logs')) {
Schema::create('logs', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->string('request')->nullable();
$table->string('referer')->nullable();
$table->ipAddress('ip');
$table->string('brow', 25);
$table->dateTime('created_at')->nullable();
$table->index('created_at');
});
}
}
public function down(): void
{
Schema::dropIfExists('logs');
}
};