Table of Contents



pears.remuneration

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

Description

REDUNDANT

Columns

Column Type Null Default Comment
name char(25) NOT NULL
code char(1) NOT NULL
sortorder smallint NULL

Primary Key

Foreign Keys

Referenced By

Table Constraint Columns Referenced columns
pears.placementremuneration remuneration code code

Indexes

Name Type Columns Detail
remuneration_sortorder Index sortorder

Triggers

Original SQL

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