Datadictionary OpenWave 3.1.25
Previous topic Chapter index Next topic

Table: tbinrcomplexiteit

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met soorten complexiteit bij complexe inrichtingen

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbinrcomplexiteit_dnkey_seq'::regclass)

Primary key.

 

 

dvcode

varchar(5)

 

 

 

Unieke codering soort inrichtingscomplexiteit.

 

 

dvomschrijving

varchar(200)

 

 

 

 

Omschrijving complexiteit

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum waarvanaf codering niet meer gebruikt kan worden.

 

Foreign Keys

There are no foreign keys for table tbinrcomplexiteit

 

Check Constraints

Name

Condition

Description

cnn_tbinrcomplexiteit_dvcode

dvcode IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbinrcomplexiteit

btree

 

dnkey

 

idu_tbinrcomplexiteit_dvcode

btree

 

dvcode

 

 

 

Triggers

There are no triggers for table tbinrcomplexiteit

 

Rules

There are no rules for table tbinrcomplexiteit

 

Policies

There are no policies for table tbinrcomplexiteit

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbmilinrichtingen

public

cfk_tbmilinr_dnkeyinrcompl

dnkeyinrcomplexiteit

public.tbinrcomplexiteit

dnkey

Set Null

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tbinrcomplexiteit (
 dnkey SERIAL,
 dvcode VARCHAR(5),
 dvomschrijving VARCHAR(200),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbinrcomplexiteit PRIMARY KEY(dnkey),
 CONSTRAINT cnn_tbinrcomplexiteit_dvcode CHECK (dvcode IS NOT NULL)
) ;

COMMENT ON TABLE public.tbinrcomplexiteit
IS 'Tabel met soorten complexiteit bij complexe inrichtingen';

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

COMMENT ON COLUMN public.tbinrcomplexiteit.dvcode
IS 'Unieke codering soort inrichtingscomplexiteit.';

COMMENT ON COLUMN public.tbinrcomplexiteit.dvomschrijving
IS 'Omschrijving complexiteit';

COMMENT ON COLUMN public.tbinrcomplexiteit.ddvervaldatum
IS 'Datum waarvanaf codering niet meer gebruikt kan worden.';

CREATE UNIQUE INDEX idu_tbinrcomplexiteit_dvcode ON public.tbinrcomplexiteit
 USING btree (dvcode COLLATE pg_catalog."default");

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 5-1-2022 14:13
Previous topic Chapter index Next topic