Schema
Owner
wetlands
Tablespace
(default)
Descriptions
Table containing limiting factors for the project, with keys back to the Project_ID and limitingfactor lookup table
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
|---|---|---|---|---|---|---|---|---|
|
|
LimitingFactorID |
integer |
|
|
|
nextval('glhri."tblLimitingFactor_LimitingFactrID_seq"'::regclass) |
|
|
|
PROJECT_ID |
integer |
|
|
|
|
|
|
|
LimitingFactor |
integer |
|
|
|
|
|
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
|---|---|---|---|---|---|---|---|---|
LimitingFactor |
LimitingFactorLUID |
No Action |
No Action |
|
Immediate |
|
Checks
There are no check constraints for table tblLimitingFactor
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
|---|---|---|---|---|---|---|
btree |
|
LimitingFactorID |
|
|
|
Triggers
There are no triggers for table tblLimitingFactor
Rules
There are no rules for table tblLimitingFactor
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
|---|---|---|---|---|---|---|---|---|---|---|
ProjLimitingFactorID |
LimitingFactorID |
No Action |
No Action |
|
Immediate |
|
Options
Option | Value |
|---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE "public"."tblLimitingFactor" (
"LimitingFactorID" SERIAL,
"PROJECT_ID" INTEGER NOT NULL,
"LimitingFactor" INTEGER,
CONSTRAINT "tblLimitingFactor_pkey" PRIMARY KEY("LimitingFactorID"),
CONSTRAINT "tblLimitingFactor_fk1" FOREIGN KEY ("LimitingFactor")
REFERENCES "public"."tblLimitingFactorLU"("LimitingFactorLUID")
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) WITH OIDS;
COMMENT ON TABLE "public"."tblLimitingFactor"
IS 'Table containing limiting factors for the project, with keys back to the Project_ID and limitingfactor lookup table';
Pete Giencke pgiencke@glc.org |
|