pears.TimesheetCancelReason

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

Lookup of user defined reasons why Timesheet cancelled

Column Type Null Default Comment
TimesheetCancelReasonID char(20) NOT NULL
Name char(100) NOT NULL
SortOrder smallint NULL
Defunct tinyint NULL 0
  • TimesheetCancelReasonID
  • No outgoing foreign keys found.
Table Constraint Columns Referenced columns
pears.TempTimeSheet TimesheetCancelReason TimesheetCancelReasonID TimesheetCancelReasonID
pears.TempTimeSheetCancellation TimesheetCancelReason TimesheetCancelReasonID TimesheetCancelReasonID
  • No indexes found.
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."TimesheetCancelReason"
-- Table comment: Lookup of user defined reasons why Timesheet cancelled
-- Statement count: 2
 
CREATE TABLE "pears"."TimesheetCancelReason" (
    "TimesheetCancelReasonID"        CHAR(20) NOT NULL
   ,"Name"                           CHAR(100) NOT NULL
   ,"SortOrder"                      SMALLINT NULL
   ,"Defunct"                        tinyint NULL DEFAULT 0
   ,PRIMARY KEY ("TimesheetCancelReasonID" ASC) 
)
GO
 
 
COMMENT ON TABLE "pears"."TimesheetCancelReason" IS 
	'Lookup of user defined reasons why Timesheet cancelled'
GO
  • database/tables/pears_timesheetcancelreason.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1