Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
For adding extra documents when sending cv's.
| Column | Type | Null | Default | Comment |
|---|---|---|---|---|
| ContactEventID | char(20) | NOT NULL | ||
| DocumentTypeID | char(20) | NOT NULL | ||
| included | smallint | NULL |
-- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."CVSendExtraDocument" -- Table comment: For adding extra documents when sending cv's. -- Statement count: 2 CREATE GLOBAL TEMPORARY TABLE "pears"."CVSendExtraDocument" ( "ContactEventID" CHAR(20) NOT NULL ,"DocumentTypeID" CHAR(20) NOT NULL ,"included" SMALLINT NULL ,PRIMARY KEY ("ContactEventID" ASC,"DocumentTypeID" ASC) ) ON COMMIT PRESERVE ROWS GO COMMENT ON TABLE "pears"."CVSendExtraDocument" IS 'For adding extra documents when sending cv''s.' GO