basic db logging
This commit is contained in:
@@ -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');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user