6 lines
258 B
SQL
6 lines
258 B
SQL
-- Ganti tipe M_PatientDOB dari DATE ke VARCHAR
|
|
-- agar nilai masked (**-**-YYYY) bisa tersimpan sebagai string
|
|
-- Nilai asli DOB ada di M_PatientDOB_enc (AES-256-GCM)
|
|
ALTER TABLE one_lab.m_patient
|
|
MODIFY COLUMN M_PatientDOB VARCHAR(20) NULL DEFAULT NULL;
|