Table of Contents



pears.StudentVacation

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

Description

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

Columns

Column Type Null Default Comment
StudentVacationID char(20) NOT NULL
FromDate date NOT NULL
ToDate date NOT NULL

Primary Key

Foreign Keys

Referenced By

Indexes

Name Type Columns Detail
StudentVacation_Date Index FromDate

Triggers

Original SQL

-- 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