From d86179628926e367b21b6abf3f87d4618fb354be Mon Sep 17 00:00:00 2001 From: Gabriel Paradiso Date: Mon, 23 Dec 2019 17:56:38 +0100 Subject: [PATCH] agregar datos de medical test --- 2.database/02.Datos_prueba.sql | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/2.database/02.Datos_prueba.sql b/2.database/02.Datos_prueba.sql index df87450..239f43a 100644 --- a/2.database/02.Datos_prueba.sql +++ b/2.database/02.Datos_prueba.sql @@ -149,4 +149,15 @@ INSERT INTO myhealth.visit(date, "time", observations, result, patientid, family ('2020-01-30','17:00:00','Observaciones de la visita 43860','',9,2), ('2020-01-31','18:00:00','Observaciones de la visita 43861','',10,2); - +-- Insertar datos de prueba para medical test +INSERT INTO myhealth.medicaltest(date, "time", observations, highresimage, type, patientid, specialistdoctorid) VALUES +('2019-12-23','09:00:00','Observaciones del medical test1','somehighresimage1', 'Radiografía Tórax', 1, 1), +('2019-12-24','19:20:00','Observaciones del medical test2','somehighresimage2', 'TAC Craneal', 2, 1), +('2019-12-25','18:35:20','Observaciones del medical test3','somehighresimage3', 'Radiografía Cadera', 3, 2), +('2019-12-26','08:15:10','Observaciones del medical test4','somehighresimage4', 'TAC Rodilla', 4, 2), +('2019-12-27','18:15:10','Observaciones del medical test5','somehighresimage5', 'TAC Pie Izquierdo', 5, 1), +('2019-12-28','22:15:40','Observaciones del medical test6','somehighresimage6', 'Radiografía Tórax', 6, 3), +('2019-12-28','23:15:40','Observaciones del medical test7','somehighresimage7', 'Radiografía Tibia', 7, 1), +('2019-12-29','11:12:20','Observaciones del medical test8','somehighresimage8', 'TAC Craneal', 8, 1), +('2019-12-30','13:17:50','Observaciones del medical test9','somehighresimage9', 'Radiografía Cadera', 2, 2), +('2019-12-31','05:08:30','Observaciones del medical test10','somehighresimage10', 'Radiografía rodilla', 4, 1);