Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbretouradvies

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met nadere specifcaties ten behoeve van geretourneerde adviezen zoals akoord onder voorwaarden

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbretouradvies_dnkey_seq'::regclass)

Primary key.

 

 

dvomschrijving

varchar(50)

 

 

 

 

codering geretourneerd advies.

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum tot wanneer de codering geldig is.

 

 

dvopmerking

varchar(255)

 

 

 

 

 

 

Foreign Keys

There are no foreign keys for table tbretouradvies

 

Check Constraints

There are no check constraints for table tbretouradvies

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbretouradvies

btree

 

dnkey

 

idx_vervaldatum_retouradvies

btree

 

ddvervaldatum

 

 

 

 

Triggers

There are no triggers for table tbretouradvies

 

Rules

There are no rules for table tbretouradvies

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbadviezen

public

cfk_adviezen_retour

dnkeyretouradvies

public.tbretouradvies

dnkey

Cascade

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbretouradvies (
 dnkey SERIAL,
 dvomschrijving VARCHAR(50),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 dvopmerking VARCHAR(255),
 CONSTRAINT cpk_tbretouradvies PRIMARY KEY(dnkey)
)
WITH (oids = false);

COMMENT ON TABLE public.tbretouradvies
IS 'Tabel met nadere specifcaties ten behoeve van geretourneerde adviezen zoals akoord onder voorwaarden';

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

COMMENT ON COLUMN public.tbretouradvies.dvomschrijving
IS 'codering geretourneerd advies.';

COMMENT ON COLUMN public.tbretouradvies.ddvervaldatum
IS 'Datum tot wanneer de codering geldig is.';

CREATE INDEX idx_vervaldatum_retouradvies ON public.tbretouradvies
 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