====== 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 =====
* code
===== Foreign Keys =====
* No outgoing foreign keys found.
===== Referenced By =====
^ Table ^ Constraint ^ Columns ^ Referenced columns ^
| [[database:tables:pears_placementremuneration|pears.placementremuneration]] | remuneration | code | code |
===== Indexes =====
^ Name ^ Type ^ Columns ^ Detail ^
| remuneration_sortorder | Index | sortorder | |
===== Triggers =====
* No triggers found.
===== 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