--DROP TABLE x_InformationRecipient CASCADE; CREATE TABLE x_InformationRecipient ( x_InformationRecipient_id int NOT NULL PRIMARY KEY, code varchar(255) NOT NULL, codeSystem varchar(255) NOT NULL, displayName varchar(255) NOT NULL ); INSERT INTO x_InformationRecipient (x_InformationRecipient_id, code, codeSystem, displayName) VALUES (1, 'PRCP', '2.16.840.1.113883.5.90', 'primary information recipient'); INSERT INTO x_InformationRecipient (x_InformationRecipient_id, code, codeSystem, displayName) VALUES (2, 'TRC', '2.16.840.1.113883.5.90', 'tracker');