Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbmilcodetrefw

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met trefwoorden bedoeld om milieu-inrichtingen te karakteriseren

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbmilcodetrefw_dnkey_seq'::regclass)

Primary key.

 

 

dvcode

varchar(5)

 

 

 

 

Codering Trefwoord.

 

 

dvomschrijving

varchar(60)

 

 

 

 

Omschrijving trefwoord.

 

 

ddvervaldatum

timestamp

 

 

 

 

 

 

Foreign Keys

There are no foreign keys for table tbmilcodetrefw

 

Check Constraints

Name

Condition

Description

cnn_milcodetrefw_code

dvcode IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbmilcodetrefw

btree

 

dnkey

 

idx_milcodetrefw_vervaldatum

btree

 

ddvervaldatum

 

 

 

 

Triggers

There are no triggers for table tbmilcodetrefw

 

Rules

There are no rules for table tbmilcodetrefw

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbmiltrefwoord

public

cfk_miltrefwoord_milcodetrefw

dnkeymilcodetrefw

public.tbmilcodetrefw

dnkey

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbmilcodetrefw (
 dnkey SERIAL,
 dvcode VARCHAR(5),
 dvomschrijving VARCHAR(60),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbmilcodetrefw PRIMARY KEY(dnkey),
 CONSTRAINT cnn_milcodetrefw_code CHECK (dvcode IS NOT NULL)
)
WITH (oids = false);

COMMENT ON TABLE public.tbmilcodetrefw
IS 'Tabel met trefwoorden bedoeld om milieu-inrichtingen te karakteriseren';

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

COMMENT ON COLUMN public.tbmilcodetrefw.dvcode
IS 'Codering Trefwoord.';

COMMENT ON COLUMN public.tbmilcodetrefw.dvomschrijving
IS 'Omschrijving trefwoord.';

CREATE INDEX idx_milcodetrefw_vervaldatum ON public.tbmilcodetrefw
 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