Schema
Owner
wetlands
Tablespace
(default)
Descriptions
Project area related mitigaiton techniques lookup table
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
|---|---|---|---|---|---|---|---|---|
|
|
TreatmentLUID |
integer |
|
|
|
nextval('"tblRestoreTreatLU_TreatmentID_seq"'::regclass) |
|
|
|
Treatment |
varchar(255) |
|
|
|
|
|
|
|
SortKey |
varchar(255) |
|
|
|
|
|
|
|
SortKeyID |
integer |
|
|
|
0 |
|
Foreign Keys
There are no foreign keys for table tblRestoreTreatLU
Checks
There are no check constraints for table tblRestoreTreatLU
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
|---|---|---|---|---|---|---|
btree |
|
SortKeyID |
|
|
|
|
btree |
|
TreatmentLUID |
|
|
|
|
btree |
|
TreatmentLUID |
|
|
|
Triggers
There are no triggers for table tblRestoreTreatLU
Rules
There are no rules for table tblRestoreTreatLU
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
|---|---|---|---|---|---|---|---|---|---|---|
LimitingFactorID |
TreatmentLUID |
No Action |
No Action |
|
Immediate |
|
||||
TreatmentID |
TreatmentLUID |
Cascade |
Cascade |
|
Immediate |
|
Options
Option | Value |
|---|---|
Inherited From |
|
Rows |
33 |
Pages |
2 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE "public"."tblRestoreTreatLU" (
"TreatmentLUID" SERIAL,
"Treatment" VARCHAR(255),
"SortKey" VARCHAR(255),
"SortKeyID" INTEGER DEFAULT 0,
CONSTRAINT "tblRestoreTreatLU_pkey" PRIMARY KEY("TreatmentLUID")
) WITHOUT OIDS;
COMMENT ON TABLE "public"."tblRestoreTreatLU"
IS 'Project area related mitigaiton techniques lookup table';
CREATE INDEX "tblRestoreTreatLU_SortKeyCode" ON "public"."tblRestoreTreatLU"
USING btree ("SortKeyID");
CREATE INDEX "tblRestoreTreatLU_TreatmentID1" ON "public"."tblRestoreTreatLU"
USING btree ("TreatmentLUID");
Pete Giencke pgiencke@glc.org |
|