====== pears.TempHolidayScheme ====== Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. ===== 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 ===== -- 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