|
25 | 25 | - nma_global_id: Legacy UUID PK (GlobalID), UNIQUE for audit |
26 | 26 | - chemistry_sample_info_id: Integer FK to NMA_Chemistry_SampleInfo.id |
27 | 27 | - nma_chemistry_sample_info_uuid: Legacy UUID FK for audit |
28 | | -- nma_sample_pt_id: Legacy UUID FK (SamplePtID) for audit |
29 | 28 | - nma_sample_point_id: Legacy SamplePointID string |
30 | 29 | """ |
31 | 30 |
|
@@ -149,7 +148,6 @@ def _transfer_hook(self, session: Session) -> None: |
149 | 148 | set_={ |
150 | 149 | "chemistry_sample_info_id": excluded.chemistry_sample_info_id, |
151 | 150 | "nma_chemistry_sample_info_uuid": excluded.nma_chemistry_sample_info_uuid, |
152 | | - "nma_SamplePtID": excluded.nma_SamplePtID, |
153 | 151 | "nma_SamplePointID": excluded.nma_SamplePointID, |
154 | 152 | "sample_value": excluded.sample_value, |
155 | 153 | "units": excluded.units, |
@@ -216,7 +214,6 @@ def _row_to_dict(self, row) -> Optional[dict[str, Any]]: |
216 | 214 | "chemistry_sample_info_id": chemistry_sample_info_id, |
217 | 215 | # Legacy UUID FK for audit |
218 | 216 | "nma_chemistry_sample_info_uuid": legacy_sample_pt_id, |
219 | | - "nma_SamplePtID": legacy_sample_pt_id, |
220 | 217 | "nma_SamplePointID": sample_point_id, |
221 | 218 | # Data columns |
222 | 219 | "analyte": self._safe_str(row, "Analyte"), |
|
0 commit comments