--DROP TABLE Findingsituation CASCADE;
CREATE TABLE Findingsituation (
Findingsituation_id int NOT NULL PRIMARY KEY,
code varchar(255) NOT NULL,
codeSystem varchar(255) NOT NULL,
displayName varchar(255) NOT NULL
);
INSERT INTO Findingsituation (Findingsituation_id, code, codeSystem, displayName)
VALUES (1, 'PB', '1.2.276.0.76.3.1.195.5.51', 'path. Befund');
INSERT INTO Findingsituation (Findingsituation_id, code, codeSystem, displayName)
VALUES (2, 'OPB', '1.2.276.0.76.3.1.195.5.51', 'ohne path. Befund');