File: /var/www/html/laravel/database/migrations/2024_11_28_143629_api_logs.php
<?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('api_logs', function (Blueprint $table) {
$table->id();
$table->bigInteger('user_id');
$table->text('request')->nullable();
$table->text('response')->nullable();
$table->timestamp('created_at')->useCurrent();
});
}
};