--DROP TABLE ct_mr_ds_angiographie CASCADE;
CREATE TABLE ct_mr_ds_angiographie (
ct_mr_ds_angiographie_id int NOT NULL PRIMARY KEY,
code varchar(255) NOT NULL,
codeSystem varchar(255) NOT NULL,
displayName varchar(255) NOT NULL
);
INSERT INTO ct_mr_ds_angiographie (ct_mr_ds_angiographie_id, code, codeSystem, displayName)
VALUES (1, '0', '1.2.276.0.76.3.1.195.5.106', 'nein');
INSERT INTO ct_mr_ds_angiographie (ct_mr_ds_angiographie_id, code, codeSystem, displayName)
VALUES (2, '1', '1.2.276.0.76.3.1.195.5.106', 'vor Aufnahme');
INSERT INTO ct_mr_ds_angiographie (ct_mr_ds_angiographie_id, code, codeSystem, displayName)
VALUES (3, '2', '1.2.276.0.76.3.1.195.5.106', 'direkt im Anschluss an native Bildgebung');
INSERT INTO ct_mr_ds_angiographie (ct_mr_ds_angiographie_id, code, codeSystem, displayName)
VALUES (4, '3', '1.2.276.0.76.3.1.195.5.106', 'nicht direkt im Anschluss an native Bildgebung aber ≤ 24 h');
INSERT INTO ct_mr_ds_angiographie (ct_mr_ds_angiographie_id, code, codeSystem, displayName)
VALUES (5, '4', '1.2.276.0.76.3.1.195.5.106', 'nicht direkt im Anschluss an native Bildgebung aber > 24 h');