Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbklachtfreq

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met kwalificaties van de frekwentie van een milieu-klacht zoals vaak, af en toe

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbklachtfreq_dnkey_seq'::regclass)

Primary key.

 

 

dvfrequentie

varchar(25)

 

 

 

 

Duiding als: Vaak, eenmalig, soms.

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum dat soort frequentie vervallen is.

 

 

dvcodefreq

varchar(10)

 

 

 

 

Codering van buiten voor de klachtfrequentie.

 

Foreign Keys

There are no foreign keys for table tbklachtfreq

 

Check Constraints

Name

Condition

Description

cnn_klachtfreq_dvfrequentie

dvfrequentie IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbklachtfreq

btree

 

dnkey

 

 

Triggers

There are no triggers for table tbklachtfreq

 

Rules

There are no rules for table tbklachtfreq

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbhandhavingen

public

cfk_tbhandh_keyklachtfreq

dnkeyklachtfreq

public.tbklachtfreq

dnkey

No Action

No Action

 

Immediate

 

tbklachten

public

cfk_klachten_tbklachtfreq

dnkeyklachtfreq

public.tbklachtfreq

dnkey

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbklachtfreq (
 dnkey SERIAL,
 dvfrequentie VARCHAR(25),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 dvcodefreq VARCHAR(10),
 CONSTRAINT cpk_tbklachtfreq PRIMARY KEY(dnkey),
 CONSTRAINT cnn_klachtfreq_dvfrequentie CHECK (dvfrequentie IS NOT NULL)
)
WITH (oids = false);

COMMENT ON TABLE public.tbklachtfreq
IS 'Tabel met kwalificaties van de frekwentie van een milieu-klacht zoals vaak, af en toe';

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

COMMENT ON COLUMN public.tbklachtfreq.dvfrequentie
IS 'Duiding als: Vaak, eenmalig, soms.';

COMMENT ON COLUMN public.tbklachtfreq.ddvervaldatum
IS 'Datum dat soort frequentie vervallen is.';

COMMENT ON COLUMN public.tbklachtfreq.dvcodefreq
IS 'Codering van buiten voor de klachtfrequentie.';

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