38 lines
1017 B
PHP
38 lines
1017 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('logs', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->unsignedBigInteger('group_id')->index();
|
|
$table->string('level')->index();
|
|
$table->string('level_name');
|
|
$table->string('channel')->index();
|
|
$table->longText('message')->nullable();
|
|
$table->longText('context')->nullable();
|
|
$table->longText('extra')->nullable();
|
|
$table->longText('formatted')->nullable();
|
|
$table->morphs('loggable');
|
|
$table->dateTime('logged_at');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('logs');
|
|
}
|
|
};
|