debug code for seecend time

This commit is contained in:
2025-08-04 12:14:01 +03:30
parent ab6d6f2cb0
commit c03601aebb
5 changed files with 7 additions and 9 deletions

View File

@@ -15,14 +15,12 @@ return new class extends Migration
$table->id();
$table->foreignId('previous_state_id')->constrained('harim_states');
$table->string('previous_state_name');
$table->foreignId('current_state_id')->constrained('harim_states');
$table->string('current_state_name');
$table->foreignId('harim_id')->constrained('harims');
$table->foreignId('action_id')->constrained('harim_actions');
$table->string('action_name');
$table->unsignedInteger('expert_id');
$table->foreign('expert_id')->references('id')->on('users');
$table->string('expert_description');
$table->json('previous_data');
$table->timestamps();
});
}