basic db logging

This commit is contained in:
2024-03-29 15:38:40 +01:00
parent be27833716
commit 51f600f2c0
5 changed files with 156 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('log_messages', function (Blueprint $table) {
$table->id();
$table->string('level_name');
$table->unsignedSmallInteger('level');
$table->string('message');
$table->dateTime('logged_at');
$table->json('context');
$table->json('extra');
});
}
};