Show pageOld revisionsBacklinksExport to PDFFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== pears.NotificationBatch ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **ID** | bigint | NOT NULL | autoincrement | | | BatchID | char(20) | NOT NULL | | | | PersonID | char(20) | NULL | | | | CompanyID | char(20) | NULL | | | | EmploymentID | char(20) | NULL | | | | VacancyID | char(20) | NULL | | | | PlacementID | char(20) | NULL | | | | ProgressID | char(20) | NULL | | | | DivisionID | char(20) | NULL | | | | StaffID | char(20) | NULL | | | | AgencyEmploymentID | char(20) | NULL | | | | DiaryID | char(20) | NULL | | | | TemplateHTML | long varchar | NULL | | | | Subject | char(200) | NULL | | | | Attachments | long varchar | NULL | | | | SubjectIDsWithType | long varchar | NULL | | | | classcode | char(2) | NULL | | | ===== Primary Key ===== * ID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | NotificationBatchID | Index | BatchID, ID | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."NotificationBatch" -- Table comment: -- Statement count: 2 CREATE GLOBAL TEMPORARY TABLE "pears"."NotificationBatch" ( "ID" bigint NOT NULL DEFAULT autoincrement ,"BatchID" char(20) NOT NULL ,"PersonID" char(20) NULL ,"CompanyID" char(20) NULL ,"EmploymentID" char(20) NULL ,"VacancyID" char(20) NULL ,"PlacementID" char(20) NULL ,"ProgressID" char(20) NULL ,"DivisionID" char(20) NULL ,"StaffID" char(20) NULL ,"AgencyEmploymentID" char(20) NULL ,"DiaryID" char(20) NULL ,"TemplateHTML" long varchar NULL ,"Subject" char(200) NULL ,"Attachments" long varchar NULL ,"SubjectIDsWithType" long varchar NULL ,"classcode" char(2) NULL ,PRIMARY KEY ("ID" ASC) ) ON COMMIT PRESERVE ROWS go CREATE INDEX "NotificationBatchID" ON "pears"."NotificationBatch" ( "BatchID","ID" ) go </code> database/tables/pears_notificationbatch.txt Last modified: 2026/08/07 19:24by 127.0.0.1