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.HolidayPayYear ====== <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 ===== Used in Configuring the Holiday Pay System. ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | Notes | long varchar | NULL | | | | **HolidayPayYearID** | char(20) | NOT NULL | | | | HolidayPayYearDescription | char(50) | NOT NULL | | | | FirstWeekToEarn | integer | NOT NULL | | | | LastWeekToEarn | integer | NOT NULL | | | | FirstWeekToPay | integer | NOT NULL | | | | LastWeekToPay | integer | NOT NULL | | | ===== Primary Key ===== * HolidayPayYearID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | EarnWeeks | Index | FirstWeekToEarn, LastWeekToEarn | | | PayWeeks | Index | FirstWeekToPay, LastWeekToPay | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."HolidayPayYear" -- Table comment: Used in Configuring the Holiday Pay System. -- Statement count: 4 CREATE TABLE "pears"."HolidayPayYear" ( "Notes" long varchar NULL ,"HolidayPayYearID" char(20) NOT NULL ,"HolidayPayYearDescription" char(50) NOT NULL ,"FirstWeekToEarn" integer NOT NULL ,"LastWeekToEarn" integer NOT NULL ,"FirstWeekToPay" integer NOT NULL ,"LastWeekToPay" integer NOT NULL ,PRIMARY KEY ("HolidayPayYearID" ASC) ) go COMMENT ON TABLE "pears"."HolidayPayYear" IS 'Used in Configuring the Holiday Pay System.' go CREATE INDEX "EarnWeeks" ON "pears"."HolidayPayYear" ( "FirstWeekToEarn","LastWeekToEarn" ) go CREATE INDEX "PayWeeks" ON "pears"."HolidayPayYear" ( "FirstWeekToPay","LastWeekToPay" ) go </code> database/tables/pears_holidaypayyear.txt Last modified: 2026/08/07 19:24by 127.0.0.1