pears.BroadbeanLocation
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
Description
Old non-Hybrid tables. Contents not to be touched.
Columns
| Column | Type | Null | Default | Comment |
|---|---|---|---|---|
| BroadbeanLocationID | char(20) | NOT NULL | ||
| Level1 | char(100) | NOT NULL | ||
| Level2 | char(100) | NOT NULL | ||
| Level3 | char(100) | NULL |
Primary Key
- BroadbeanLocationID
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"."BroadbeanLocation" -- Table comment: Old non-Hybrid tables. Contents not to be touched. -- Statement count: 2 CREATE TABLE "pears"."BroadbeanLocation" ( "BroadbeanLocationID" CHAR(20) NOT NULL ,"Level1" CHAR(100) NOT NULL ,"Level2" CHAR(100) NOT NULL ,"Level3" CHAR(100) NULL ,PRIMARY KEY ("BroadbeanLocationID" ASC) ) GO COMMENT ON TABLE "pears"."BroadbeanLocation" IS 'Old non-Hybrid tables. Contents not to be touched. ' GO