cotizaweb/database/migrations/2026_02_08_223522_create_audits_table.php
jesusfb 161fcee049
Some checks are pending
Deploy to EC2 cotiza / deploy (push) Waiting to run
first commit
2026-04-24 12:53:27 -07:00

38 lines
1.2 KiB
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('audits', function (Blueprint $table) {
$table->id();
$table->string('event'); // created, updated, deleted, login, logout, password_changed
$table->string('module'); // users, companies, clients, products, etc
$table->morphs('auditable'); // modelo afectado (User, Company, Client, etc)
$table->foreignId('user_id')->nullable()->constrained()->nullOnDelete();
$table->foreignId('company_id')->nullable()->constrained()->nullOnDelete();
$table->json('old_values')->nullable();
$table->json('new_values')->nullable();
$table->string('ip_address')->nullable();
$table->string('user_agent')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('audits');
}
};