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.TempHolidayScheme ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Description ===== Records making up the TempHolidayPayScheme. Each entry represents a line in the display calculation. Used in conjunction with the dedicated function - TempHolidayCalc() ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **ID** | smallint | NOT NULL | | | | Description | char(50) | NOT NULL | | | | SortOrder | smallint | NOT NULL | | | ===== Primary Key ===== * ID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | TempHolScheme_Sort | Index | SortOrder | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."TempHolidayScheme" -- Table comment: Records making up the TempHolidayPayScheme. Each entry represents a line in the display calculation. Used in conjunction with the dedicated function - TempHolidayCalc() -- Statement count: 3 CREATE TABLE "pears"."TempHolidayScheme" ( "ID" smallint NOT NULL ,"Description" char(50) NOT NULL ,"SortOrder" smallint NOT NULL ,PRIMARY KEY ("ID" ASC) ) go COMMENT ON TABLE "pears"."TempHolidayScheme" IS 'Records making up the TempHolidayPayScheme. Each entry represents a line in the display calculation. Used in conjunction with the dedicated function - TempHolidayCalc()' go CREATE INDEX "TempHolScheme_Sort" ON "pears"."TempHolidayScheme" ( "SortOrder" ) go </code> database/tables/pears_tempholidayscheme.txt Last modified: 2026/08/07 19:24by 127.0.0.1