db_ecological_db
Previous topic Chapter index Next topic

Table: topology

 

 

Schema

topology

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

There is no description for table topology

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

id

serial

 

nextval('topology_id_seq'::regclass)

 

 

 

name

varchar

 

 

 

 

 

srid

integer

 

 

 

 

 

 

precision

double precision

 

 

 

 

 

 

hasz

boolean

 

 

false

 

 

Foreign Keys

There are no foreign keys for table topology

 

Check Constraints

There are no check constraints for table topology

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

topology_name_key

btree

 

name

 

 

topology_pkey

btree

 

id

 

 

Triggers

There are no triggers for table topology

 

Rules

There are no rules for table topology

 

Policies

There are no policies for table topology

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

layer

topology

layer_topology_id_fkey

topology_id

topology.topology

id

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE topology.topology (
 id SERIAL,
 name VARCHAR NOT NULL,
 srid INTEGER NOT NULL,
 "precision" DOUBLE PRECISION NOT NULL,
 hasz BOOLEAN DEFAULT false NOT NULL,
 CONSTRAINT topology_name_key UNIQUE(name),
 CONSTRAINT topology_pkey PRIMARY KEY(id)
) ;

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com)
Previous topic Chapter index Next topic