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 |
| Table | Constraint | Columns | Referenced columns |
|---|---|---|---|
| pears.placementremuneration | remuneration | code | code |
| Name | Type | Columns | Detail |
|---|---|---|---|
| remuneration_sortorder | Index | sortorder |
-- 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