using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace VigilCareClinicalAPI.Migrations { /// public partial class InitialSchema : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "alert_thresholds", columns: table => new { id = table.Column(type: "uuid", nullable: false, defaultValueSql: "gen_random_uuid()"), observation_code = table.Column(type: "character varying(50)", maxLength: 50, nullable: false), display_name = table.Column(type: "character varying(200)", maxLength: 200, nullable: false), unit = table.Column(type: "character varying(20)", maxLength: 20, nullable: false), critical_low = table.Column(type: "numeric(10,3)", nullable: true), warning_low = table.Column(type: "numeric(10,3)", nullable: true), warning_high = table.Column(type: "numeric(10,3)", nullable: true), critical_high = table.Column(type: "numeric(10,3)", nullable: true), created_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()") }, constraints: table => { table.PrimaryKey("PK_alert_thresholds", x => x.id); }); migrationBuilder.CreateTable( name: "outbox_events", columns: table => new { id = table.Column(type: "uuid", nullable: false, defaultValueSql: "gen_random_uuid()"), topic = table.Column(type: "character varying(200)", maxLength: 200, nullable: false), payload = table.Column(type: "jsonb", nullable: false), created_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()"), processed_at = table.Column(type: "timestamp with time zone", nullable: true) }, constraints: table => { table.PrimaryKey("PK_outbox_events", x => x.id); }); migrationBuilder.CreateTable( name: "patients", columns: table => new { id = table.Column(type: "uuid", nullable: false, defaultValueSql: "gen_random_uuid()"), mrn = table.Column(type: "character varying(20)", maxLength: 20, nullable: false), first_name = table.Column(type: "character varying(100)", maxLength: 100, nullable: false), last_name = table.Column(type: "character varying(100)", maxLength: 100, nullable: false), date_of_birth = table.Column(type: "date", nullable: false), gender = table.Column(type: "character varying(10)", maxLength: 10, nullable: false), status = table.Column(type: "character varying(20)", maxLength: 20, nullable: false, defaultValue: "active"), created_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()") }, constraints: table => { table.PrimaryKey("PK_patients", x => x.id); }); migrationBuilder.CreateTable( name: "reconciliation_alerts", columns: table => new { id = table.Column(type: "uuid", nullable: false, defaultValueSql: "gen_random_uuid()"), check_type = table.Column(type: "character varying(50)", maxLength: 50, nullable: false), encounter_id = table.Column(type: "uuid", nullable: true), patient_id = table.Column(type: "uuid", nullable: true), details = table.Column(type: "text", nullable: false), resolved_at = table.Column(type: "timestamp with time zone", nullable: true), created_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()") }, constraints: table => { table.PrimaryKey("PK_reconciliation_alerts", x => x.id); table.CheckConstraint("chk_reconciliation_alerts_check_type", "check_type IN ('UNACKNOWLEDGED_CRITICAL_ALERT', 'PENDING_ORDER_NO_RESULT', 'ACTIVE_INPATIENT_NO_OBSERVATION')"); }); migrationBuilder.CreateTable( name: "encounters", columns: table => new { id = table.Column(type: "uuid", nullable: false, defaultValueSql: "gen_random_uuid()"), patient_id = table.Column(type: "uuid", nullable: false), encounter_type = table.Column(type: "character varying(20)", maxLength: 20, nullable: false), status = table.Column(type: "character varying(20)", maxLength: 20, nullable: false, defaultValueSql: "'SCHEDULED'"), department = table.Column(type: "character varying(100)", maxLength: 100, nullable: false), attending_physician = table.Column(type: "character varying(200)", maxLength: 200, nullable: false), admitted_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()"), discharged_at = table.Column(type: "timestamp with time zone", nullable: true), created_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()") }, constraints: table => { table.PrimaryKey("PK_encounters", x => x.id); table.CheckConstraint("chk_encounters_encounter_type", "encounter_type IN ('INPATIENT', 'OUTPATIENT', 'EMERGENCY')"); table.CheckConstraint("chk_encounters_status", "status IN ('SCHEDULED', 'ACTIVE', 'DISCHARGED', 'CANCELLED')"); table.ForeignKey( name: "FK_encounters_patients_patient_id", column: x => x.patient_id, principalTable: "patients", principalColumn: "id", onDelete: ReferentialAction.Restrict); }); migrationBuilder.CreateTable( name: "clinical_alerts", columns: table => new { id = table.Column(type: "uuid", nullable: false, defaultValueSql: "gen_random_uuid()"), encounter_id = table.Column(type: "uuid", nullable: false), patient_id = table.Column(type: "uuid", nullable: false), observation_id = table.Column(type: "uuid", nullable: true), alert_type = table.Column(type: "character varying(50)", maxLength: 50, nullable: false), severity = table.Column(type: "character varying(20)", maxLength: 20, nullable: false), details = table.Column(type: "text", nullable: false), status = table.Column(type: "character varying(20)", maxLength: 20, nullable: false, defaultValueSql: "'OPEN'"), acknowledged_at = table.Column(type: "timestamp with time zone", nullable: true), acknowledged_by = table.Column(type: "character varying(200)", maxLength: 200, nullable: true), resolved_at = table.Column(type: "timestamp with time zone", nullable: true), triggered_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()") }, constraints: table => { table.PrimaryKey("PK_clinical_alerts", x => x.id); table.CheckConstraint("chk_clinical_alerts_alert_type", "alert_type IN ('SEPSIS_WARNING', 'CRITICAL_HEART_RATE', 'CRITICAL_TEMP_C', 'CRITICAL_POTASSIUM_MEQ_L', 'CRITICAL_SPO2', 'CRITICAL_RESP_RATE', 'CRITICAL_WBC_K_UL')"); table.CheckConstraint("chk_clinical_alerts_severity", "severity IN ('WARNING', 'CRITICAL')"); table.CheckConstraint("chk_clinical_alerts_status", "status IN ('OPEN', 'ACKNOWLEDGED', 'RESOLVED', 'ESCALATED')"); table.ForeignKey( name: "FK_clinical_alerts_encounters_encounter_id", column: x => x.encounter_id, principalTable: "encounters", principalColumn: "id", onDelete: ReferentialAction.Restrict); }); migrationBuilder.CreateTable( name: "observations", columns: table => new { id = table.Column(type: "uuid", nullable: false, defaultValueSql: "gen_random_uuid()"), encounter_id = table.Column(type: "uuid", nullable: false), observation_code = table.Column(type: "character varying(50)", maxLength: 50, nullable: false), value = table.Column(type: "numeric(10,3)", nullable: false), unit = table.Column(type: "character varying(20)", maxLength: 20, nullable: false), source = table.Column(type: "character varying(20)", maxLength: 20, nullable: false, defaultValueSql: "'MANUAL'"), idempotency_key = table.Column(type: "character varying(100)", maxLength: 100, nullable: true), recorded_at = table.Column(type: "timestamp with time zone", nullable: false), created_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()") }, constraints: table => { table.PrimaryKey("PK_observations", x => x.id); table.CheckConstraint("chk_observations_source", "source IN ('MANUAL', 'DEVICE', 'LAB')"); table.ForeignKey( name: "FK_observations_encounters_encounter_id", column: x => x.encounter_id, principalTable: "encounters", principalColumn: "id", onDelete: ReferentialAction.Restrict); }); migrationBuilder.CreateTable( name: "orders", columns: table => new { id = table.Column(type: "uuid", nullable: false, defaultValueSql: "gen_random_uuid()"), encounter_id = table.Column(type: "uuid", nullable: false), order_type = table.Column(type: "character varying(20)", maxLength: 20, nullable: false), description = table.Column(type: "text", nullable: false), ordered_by = table.Column(type: "character varying(200)", maxLength: 200, nullable: false), status = table.Column(type: "character varying(20)", maxLength: 20, nullable: false, defaultValue: "pending"), ordered_at = table.Column(type: "timestamp with time zone", nullable: false, defaultValueSql: "NOW()"), resulted_at = table.Column(type: "timestamp with time zone", nullable: true) }, constraints: table => { table.PrimaryKey("PK_orders", x => x.id); table.CheckConstraint("chk_orders_order_type", "order_type IN ('LAB', 'IMAGING', 'MEDICATION', 'PROCEDURE')"); table.ForeignKey( name: "FK_orders_encounters_encounter_id", column: x => x.encounter_id, principalTable: "encounters", principalColumn: "id", onDelete: ReferentialAction.Restrict); }); migrationBuilder.CreateIndex( name: "IX_alert_thresholds_observation_code", table: "alert_thresholds", column: "observation_code", unique: true); migrationBuilder.CreateIndex( name: "IX_clinical_alerts_encounter_id_triggered_at", table: "clinical_alerts", columns: new[] { "encounter_id", "triggered_at" }); migrationBuilder.CreateIndex( name: "IX_clinical_alerts_patient_id_triggered_at", table: "clinical_alerts", columns: new[] { "patient_id", "triggered_at" }); migrationBuilder.CreateIndex( name: "IX_clinical_alerts_severity_triggered_at", table: "clinical_alerts", columns: new[] { "severity", "triggered_at" }, filter: "status = 'OPEN'"); migrationBuilder.CreateIndex( name: "IX_encounters_patient_id_admitted_at", table: "encounters", columns: new[] { "patient_id", "admitted_at" }); migrationBuilder.CreateIndex( name: "IX_encounters_status_admitted_at", table: "encounters", columns: new[] { "status", "admitted_at" }, filter: "status = 'ACTIVE'"); migrationBuilder.CreateIndex( name: "IX_observations_encounter_id_observation_code_recorded_at", table: "observations", columns: new[] { "encounter_id", "observation_code", "recorded_at" }); migrationBuilder.CreateIndex( name: "IX_observations_idempotency_key", table: "observations", column: "idempotency_key", unique: true, filter: "idempotency_key IS NOT NULL"); migrationBuilder.CreateIndex( name: "IX_orders_encounter_id_ordered_at", table: "orders", columns: new[] { "encounter_id", "ordered_at" }); migrationBuilder.CreateIndex( name: "IX_orders_status_ordered_at", table: "orders", columns: new[] { "status", "ordered_at" }, filter: "status IN ('pending', 'in_progress')"); migrationBuilder.CreateIndex( name: "IX_outbox_events_created_at", table: "outbox_events", column: "created_at", filter: "processed_at IS NULL"); migrationBuilder.CreateIndex( name: "IX_patients_mrn", table: "patients", column: "mrn", unique: true); migrationBuilder.CreateIndex( name: "IX_reconciliation_alerts_check_type_encounter_id", table: "reconciliation_alerts", columns: new[] { "check_type", "encounter_id" }, filter: "resolved_at IS NULL"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "alert_thresholds"); migrationBuilder.DropTable( name: "clinical_alerts"); migrationBuilder.DropTable( name: "observations"); migrationBuilder.DropTable( name: "orders"); migrationBuilder.DropTable( name: "outbox_events"); migrationBuilder.DropTable( name: "reconciliation_alerts"); migrationBuilder.DropTable( name: "encounters"); migrationBuilder.DropTable( name: "patients"); } } }