Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbgebouwspec

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met mogelijke gebouwspecificaties zoals kinderdagverblijf, peuterspeeelzaal

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbgebouwspec_dnkey_seq'::regclass)

Primary key.

 

 

dvspecificatie

varchar(50)

 

 

 

 

Gebouw specificatie zoals kinderdagverblijf.

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum dat item vervallen is.

 

Foreign Keys

There are no foreign keys for table tbgebouwspec

 

Check Constraints

Name

Condition

Description

cnn_tbgebouwspec_spec

dvspecificatie IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbgebouwspec

btree

 

dnkey

 

 

Triggers

There are no triggers for table tbgebouwspec

 

Rules

There are no rules for table tbgebouwspec

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbgebouwen

public

cfk_tbgebouwen_keygebouwspec

dnkeygebouwspec

public.tbgebouwspec

dnkey

No Action

No Action

 

Immediate

 

tbmilasbest

public

cfk_tbmilasbest_dnkeygebspec

dnkeygebouwspec

public.tbgebouwspec

dnkey

No Action

No Action

 

Immediate

 

tbtoestemmingen

public

cfk_toestemming_dnkeygebspec

dnkeygebouwspec

public.tbgebouwspec

dnkey

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbgebouwspec (
 dnkey SERIAL,
 dvspecificatie VARCHAR(50),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbgebouwspec PRIMARY KEY(dnkey),
 CONSTRAINT cnn_tbgebouwspec_spec CHECK (dvspecificatie IS NOT NULL)
)
WITH (oids = false);

COMMENT ON TABLE public.tbgebouwspec
IS 'Tabel met mogelijke gebouwspecificaties zoals kinderdagverblijf, peuterspeeelzaal';

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

COMMENT ON COLUMN public.tbgebouwspec.dvspecificatie
IS 'Gebouw specificatie zoals kinderdagverblijf.';

COMMENT ON COLUMN public.tbgebouwspec.ddvervaldatum
IS 'Datum dat item vervallen is.';

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