This commit is contained in:
Masroor Ehsan 2025-01-07 17:52:23 +06:00
parent a4cf3015dd
commit fb2d962023

View File

@ -37,7 +37,7 @@ public function up(): void
$table->timestamp('assigned_at')->nullable();
$table->timestamp('locked_at')->nullable();
$table->timestamp('reported_at')->nullable();
$table->timestamp('authorized_at')->nullable();
$table->timestamp('approved_at')->nullable();
$table->timestamp('archived_at')->nullable();
$table->unsignedTinyInteger('study_status')->default(StudyLevelStatus::Pending->value);
@ -50,8 +50,8 @@ public function up(): void
$table->unsignedBigInteger('assigned_physician_id')->nullable();
$table->unsignedBigInteger('locking_physician_id')->nullable();
$table->unsignedBigInteger('reporting_physician_id')->nullable();
$table->unsignedBigInteger('authorizing_physician_id')->nullable();
$table->unsignedBigInteger('referring_doctor_id')->nullable();
$table->unsignedBigInteger('approving_physician_id')->nullable();
$table->unsignedBigInteger('clinician_id')->nullable();
$table->unsignedBigInteger('institute_id');
$table->unsignedBigInteger('facility_id')->nullable();