--DROP TABLE Pupilsizequantitative CASCADE;
CREATE TABLE Pupilsizequantitative (
Pupilsizequantitative_id int NOT NULL PRIMARY KEY,
code varchar(255) NOT NULL,
codeSystem varchar(255) NOT NULL,
displayName varchar(255) NOT NULL
);
INSERT INTO Pupilsizequantitative (Pupilsizequantitative_id, code, codeSystem, displayName)
VALUES (1, 'D', '1.2.276.0.76.3.1.195.5.49', 'weit');
INSERT INTO Pupilsizequantitative (Pupilsizequantitative_id, code, codeSystem, displayName)
VALUES (2, 'M', '1.2.276.0.76.3.1.195.5.49', 'mittel');
INSERT INTO Pupilsizequantitative (Pupilsizequantitative_id, code, codeSystem, displayName)
VALUES (3, 'C', '1.2.276.0.76.3.1.195.5.49', 'eng');