pears.StudentVacation

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

Contains the start and end dates of standard student vacations. Used when matching candidates with vacation availability / unavailability.

Column Type Null Default Comment
StudentVacationID char(20) NOT NULL
FromDate date NOT NULL
ToDate date NOT NULL
  • StudentVacationID
  • No outgoing foreign keys found.
  • No incoming foreign keys found.
Name Type Columns Detail
StudentVacation_Date Index FromDate
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."StudentVacation"
-- Table comment: Contains the start and end dates of standard student vacations. Used when matching candidates with vacation availability / unavailability.
-- Statement count: 3
 
CREATE TABLE "pears"."StudentVacation" (
    "StudentVacationID"              CHAR(20) NOT NULL
   ,"FromDate"                       DATE NOT NULL
   ,"ToDate"                         DATE NOT NULL
   ,PRIMARY KEY ("StudentVacationID" ASC) 
)
GO
 
 
COMMENT ON TABLE "pears"."StudentVacation" IS 
	'Contains the start and end dates of standard student vacations. Used when matching candidates with vacation availability / unavailability.'
GO
 
 
CREATE INDEX "StudentVacation_Date" ON "pears"."StudentVacation"
    ( "FromDate" )
GO
  • database/tables/pears_studentvacation.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1