mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 00:02:15 +01:00
51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateAuditsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
$connection = config('audit.drivers.database.connection', config('database.default'));
|
|
$table = config('audit.drivers.database.table', 'audits');
|
|
|
|
Schema::connection($connection)->create($table, function (Blueprint $table): void {
|
|
|
|
$morphPrefix = config('audit.user.morph_prefix', 'user');
|
|
|
|
$table->bigIncrements('id');
|
|
$table->string($morphPrefix.'_type')->nullable();
|
|
$table->uuid($morphPrefix.'_id')->nullable();
|
|
$table->string('event');
|
|
$table->uuidMorphs('auditable');
|
|
$table->json('old_values')->nullable();
|
|
$table->json('new_values')->nullable();
|
|
$table->text('url')->nullable();
|
|
$table->ipAddress('ip_address')->nullable();
|
|
$table->string('user_agent', 1023)->nullable();
|
|
$table->string('tags')->nullable();
|
|
$table->timestamps();
|
|
|
|
$table->index([$morphPrefix.'_id', $morphPrefix.'_type']);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
$connection = config('audit.drivers.database.connection', config('database.default'));
|
|
$table = config('audit.drivers.database.table', 'audits');
|
|
|
|
Schema::connection($connection)->drop($table);
|
|
}
|
|
}
|