pears.terminology
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
Description
non standard
Columns
| Column | Type | Null | Default | Comment |
|---|---|---|---|---|
| terminologyid | char(20) | NOT NULL | ||
| singular | char(30) | NULL | ||
| plural | char(30) | NULL |
Primary Key
- terminologyid
Foreign Keys
- No outgoing foreign keys found.
Referenced By
- No incoming foreign keys found.
Indexes
- No indexes found.
Triggers
- No triggers found.
Original SQL
-- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."terminology" -- Table comment: non standard -- Statement count: 2 CREATE TABLE "pears"."terminology" ( "terminologyid" CHAR(20) NOT NULL ,"singular" CHAR(30) NULL ,"plural" CHAR(30) NULL ,PRIMARY KEY ("terminologyid" ASC) ) GO COMMENT ON TABLE "pears"."terminology" IS 'non standard' GO