This commit is contained in:
Masroor Ehsan 2025-01-22 17:57:02 +06:00
parent 03bd94eb37
commit bf9faa8864

View File

@ -17,9 +17,11 @@ public function up(): void
$table->ipAddress('ip_addr')->nullable(); $table->ipAddress('ip_addr')->nullable();
$table->unsignedBigInteger('user_agent_id')->nullable(); $table->unsignedBigInteger('user_agent_id')->nullable();
$table->string('orthanc_uuid')->nullable(); $table->string('orthanc_uuid')->nullable();
$table->text('url')->nullable(); $table->string('url')->nullable();
$table->text('notes')->nullable(); $table->text('notes')->nullable();
$table->timestamp('created_at'); $table->timestamp('created_at');
$table->index(['study_id', 'created_at']);
}); });
} }