Table of Contents



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

Foreign Keys

Referenced By

Indexes

Name Type Columns Detail
TempHolScheme_Sort Index SortOrder

Triggers

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