pears.TempHolidayScheme

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

Records making up the TempHolidayPayScheme. Each entry represents a line in the display calculation. Used in conjunction with the dedicated function - TempHolidayCalc()

Column Type Null Default Comment
ID smallint NOT NULL
Description char(50) NOT NULL
SortOrder smallint NOT NULL
  • ID
  • No outgoing foreign keys found.
  • No incoming foreign keys found.
Name Type Columns Detail
TempHolScheme_Sort Index SortOrder
  • No triggers found.
-- 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
  • database/tables/pears_tempholidayscheme.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1