Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbcontrgebouwtype

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel te behoeve van berekening nieuw cyclische brandweercontrole datum op basis van gebouwtyperingen

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbcontrgebouwtype_dnkey_seq'::regclass)

Primary key.

 

 

dvcode

varchar(5)

 

 

 

 

Codering van brandweer controle regime.

 

 

dvomschrijving

varchar(50)

 

 

 

 

De omschrijving van het brandweer controleregime (de instructiecode voor creeren van controle-cycli).

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum waarvanaf het brandweer controleregime niet meer gebruikt kan worden.

 

Foreign Keys

There are no foreign keys for table tbcontrgebouwtype

 

Check Constraints

Name

Condition

Description

cnn_contrgebouwtype_dvcode

dvcode IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbcontrgebouwtype

btree

 

dnkey

 

 

Triggers

There are no triggers for table tbcontrgebouwtype

 

Rules

There are no rules for table tbcontrgebouwtype

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbgebouwtype

public

cfk_tbgebouwtype_keyctrgeb

dnkeycontrgebouwtype

public.tbcontrgebouwtype

dnkey

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbcontrgebouwtype (
 dnkey SERIAL,
 dvcode VARCHAR(5),
 dvomschrijving VARCHAR(50),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbcontrgebouwtype PRIMARY KEY(dnkey),
 CONSTRAINT cnn_contrgebouwtype_dvcode CHECK (dvcode IS NOT NULL)
)
WITH (oids = false);

COMMENT ON TABLE public.tbcontrgebouwtype
IS 'Tabel te behoeve van berekening nieuw cyclische brandweercontrole datum op basis van gebouwtyperingen';

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

COMMENT ON COLUMN public.tbcontrgebouwtype.dvcode
IS 'Codering van brandweer controle regime.';

COMMENT ON COLUMN public.tbcontrgebouwtype.dvomschrijving
IS 'De omschrijving van het brandweer controleregime (de instructiecode voor creeren van controle-cycli).';

COMMENT ON COLUMN public.tbcontrgebouwtype.ddvervaldatum
IS 'Datum waarvanaf het brandweer controleregime niet meer gebruikt kan worden.';

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