Schema
Owner
albenard
Tablespace
(default)
Descriptions
Contains node topology primitives
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
node_id |
serial |
|
nextval('placeautopo.node_node_id_seq'::regclass) |
|
|||
|
containing_face |
integer |
|
|
|
|
|
|
|
|
geom |
public.geometry |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
containing_face |
face_id |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table node
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
gist |
|
geom |
|
|
|
|
btree |
|
node_id |
|
Triggers
There are no triggers for table node
Rules
There are no rules for table node
Policies
There are no policies for table node
Referenced
Table | Schema | Foreign Key | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
end_node |
node_id |
No Action |
No Action |
|
Immediate |
|
||||
start_node |
node_id |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
112 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE placeautopo.node (
node_id SERIAL,
containing_face INTEGER,
geom public.geometry,
CONSTRAINT node_primary_key PRIMARY KEY(node_id),
CONSTRAINT face_exists FOREIGN KEY (containing_face)
REFERENCES placeautopo.face(face_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON TABLE placeautopo.node
IS 'Contains node topology primitives';
CREATE INDEX node_gist ON placeautopo.node
USING gist (geom public.gist_geometry_ops_2d);
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |