Schema
Owner
wetlands
Tablespace
(default)
Descriptions
A table describing the project's significance to the Great Lakes Regional Collaboration Strategy
FORM: "Relevancy to Great Lakes Regional Collaboration Strategy"
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
|---|---|---|---|---|---|---|---|---|
|
|
ProjectSignificanceID |
integer |
|
|
|
nextval('"ProjectSignificance_ProjectSignificance_seq"'::regclass) |
|
|
|
ProjectID |
integer |
|
|
|
|
|
|
|
SignificanceID |
integer |
|
|
|
|
|
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
|---|---|---|---|---|---|---|---|---|
SignificanceID |
ProjectSignificanceLUID |
No Action |
No Action |
|
Immediate |
|
||
ProjectID |
PROJECT_ID |
No Action |
No Action |
|
Immediate |
|
Checks
There are no check constraints for table tblProjectSignificance
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
|---|---|---|---|---|---|---|
btree |
|
ProjectSignificanceID |
|
|
|
Triggers
There are no triggers for table tblProjectSignificance
Rules
There are no rules for table tblProjectSignificance
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
|---|---|---|---|---|---|---|---|---|---|---|
ProjSignificanceID |
ProjectSignificanceID |
No Action |
No Action |
|
Immediate |
|
Options
Option | Value |
|---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE "public"."tblProjectSignificance" (
"ProjectSignificanceID" SERIAL,
"ProjectID" INTEGER NOT NULL,
"SignificanceID" INTEGER NOT NULL,
CONSTRAINT "ProjectSignificance_pkey" PRIMARY KEY("ProjectSignificanceID"),
CONSTRAINT "ProjectSignificance_fk" FOREIGN KEY ("SignificanceID")
REFERENCES "public"."tblProjectSignificanceLU"("ProjectSignificanceLUID")
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT "tblProjectSignificance_fk" FOREIGN KEY ("ProjectID")
REFERENCES "public"."tblProject"("PROJECT_ID")
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) WITHOUT OIDS;
COMMENT ON TABLE "public"."tblProjectSignificance"
IS 'A table describing the project''s significance to the Great Lakes Regional Collaboration Strategy
FORM: "Relevancy to Great Lakes Regional Collaboration Strategy"';
Pete Giencke pgiencke@glc.org |
|