1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
-- Projekt GNUmed
-- Impfkalender der Hersteller von Typhus-Impfstoffen
-- Quellen: Beipackzettel
-- author: Karsten Hilbert <Karsten.Hilbert@gmx.net>
-- license: GPL v2 or later
-- =============================================
-- force terminate + exit(3) on errors if non-interactive
\set ON_ERROR_STOP 1
-- Impfplan erstellen
insert into clin.vaccination_course
(fk_recommended_by, fk_indication, comment)
values (
-1,
(select id from clin.vacc_indication where description='salmonella typhi'),
'Herstellerangabe'
);
-- Impfzeitpunkte definieren
insert into clin.vaccination_definition
(fk_course, seq_no, min_age_due, comment)
values (
currval('clin.vaccination_course_pk_seq'),
1,
'2 years'::interval,
'unter 2 Jahren nur bei konkretem Infektionsrisiko oder einer Epidemie impfen'
);
insert into clin.vaccination_definition
(fk_course, seq_no, min_age_due, is_booster, min_interval)
values (
currval('clin.vaccination_course_pk_seq'),
null,
'5 years'::interval,
true,
'3 years'::interval
);
-- =============================================
select log_script_insertion('$RCSfile: Impfplan-Typhus.sql,v $', '$Revision: 1.2 $');
|