Files
healthcareapi/database/migrations/2024_11_20_054955_create_logs_table.php
2026-06-08 19:58:50 +07:00

36 lines
959 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->foreignId('user_id')->constrained()->onDelete('cascade');
$table->string('action');
$table->string('model')->nullable();
$table->unsignedBigInteger('model_id')->nullable();
$table->text('changes')->nullable();
$table->string('description')->nullable();
$table->timestamp('timestamp')->useCurrent();
$table->boolean('is_success');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('logs');
}
};