Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbmonumenten

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met monumentsoorten zoals rijksmonument, gemeentelijk monument

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbmonumenten_dnkey_seq'::regclass)

Primary key.

 

 

dvomschrijving

varchar(40)

 

 

 

 

Rijksmonument iof gemeentemonument e.d.

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum waarvanaf de soort monument is komen te vervallen.

 

Foreign Keys

There are no foreign keys for table tbmonumenten

 

Check Constraints

There are no check constraints for table tbmonumenten

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbmonumenten

btree

 

dnkey

 

idx_vervaldatum_monumenten

btree

 

ddvervaldatum

 

 

 

 

Triggers

There are no triggers for table tbmonumenten

 

Rules

There are no rules for table tbmonumenten

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbperceeladressen

public

cfk_perceeladressen_monument

dnkeymonumenten

public.tbmonumenten

dnkey

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbmonumenten (
 dnkey SERIAL,
 dvomschrijving VARCHAR(40),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbmonumenten PRIMARY KEY(dnkey)
)
WITH (oids = false);

COMMENT ON TABLE public.tbmonumenten
IS 'Tabel met monumentsoorten zoals rijksmonument, gemeentelijk monument';

COMMENT ON COLUMN public.tbmonumenten.dnkey
IS 'Primary key.';

COMMENT ON COLUMN public.tbmonumenten.dvomschrijving
IS 'Rijksmonument iof gemeentemonument e.d.';

COMMENT ON COLUMN public.tbmonumenten.ddvervaldatum
IS 'Datum waarvanaf de soort monument is komen te vervallen.';

CREATE INDEX idx_vervaldatum_monumenten ON public.tbmonumenten
 USING btree (ddvervaldatum);

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 22-2-2017 10:50
Previous topic Chapter index Next topic