pears.CVSendExtraDocument
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
Description
For adding extra documents when sending cv's.
Columns
| Column | Type | Null | Default | Comment |
|---|---|---|---|---|
| ContactEventID | char(20) | NOT NULL | ||
| DocumentTypeID | char(20) | NOT NULL | ||
| included | smallint | NULL |
Primary Key
- ContactEventID, DocumentTypeID
Foreign Keys
- No outgoing foreign keys found.
Referenced By
- No incoming foreign keys found.
Indexes
- No indexes found.
Triggers
- No triggers found.
Original SQL
-- 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