database:tables:pears_remuneration



pears.remuneration

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

REDUNDANT

Column Type Null Default Comment
name char(25) NOT NULL
code char(1) NOT NULL
sortorder smallint NULL
  • code
  • No outgoing foreign keys found.
Table Constraint Columns Referenced columns
pears.placementremuneration remuneration code code
Name Type Columns Detail
remuneration_sortorder Index sortorder
  • No triggers found.
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."remuneration"
-- Table comment: REDUNDANT
-- Statement count: 3
 
CREATE TABLE "pears"."remuneration" (
    "name"                           CHAR(25) NOT NULL
   ,"code"                           CHAR(1) NOT NULL
   ,"sortorder"                      SMALLINT NULL
   ,PRIMARY KEY ("code" ASC) 
)
GO
 
 
COMMENT ON TABLE "pears"."remuneration" IS 
	'REDUNDANT'
GO
 
 
CREATE INDEX "remuneration_sortorder" ON "pears"."remuneration"
    ( "sortorder" )
GO
  • database/tables/pears_remuneration.txt
  • Last modified: 2026/08/07 19:24
  • by 127.0.0.1