This commit is contained in:
Lizandro Guarnizo
2026-04-18 23:41:01 -05:00
parent 876e935a66
commit 318a1742cc
37 changed files with 8838 additions and 89 deletions
+7
View File
@@ -252,3 +252,10 @@ INSERT IGNORE INTO exam_tipos (codigo, nombre, categoria) VALUES
('HEPB', 'Hepatitis B (HBsAg)', 'Serología'),
('RXP', 'Rayos X de pecho', 'Radiología'),
('ECG', 'Electrocardiograma', 'Cardiología');
-- ── 13. Columna firma_svg en turnero_consentimientos ─────────
-- Almacena el dibujo de firma del paciente (data URL PNG).
-- MEDIUMTEXT soporta firmas de alta resolución (hasta 16 MB).
ALTER TABLE turnero_consentimientos
ADD COLUMN IF NOT EXISTS firma_svg MEDIUMTEXT DEFAULT NULL
COMMENT 'Dibujo de firma del paciente (data URL PNG base64)';