Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbhandhprojekten

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met mogelijke handhavings-projectbenamingen

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbhandhprojekten_dnkey_seq'::regclass)

Primary key

 

 

dvomschrijving

varchar(40)

 

 

 

 

Projektomschrijving zoals aktie tankslag

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum waarvanaf het project niet meer actief is

 

Foreign Keys

There are no foreign keys for table tbhandhprojekten

 

Check Constraints

There are no check constraints for table tbhandhprojekten

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbhandhprojekten

btree

 

dnkey

 

idx_vervaldatum_projekten

btree

 

ddvervaldatum

 

 

 

 

Triggers

There are no triggers for table tbhandhprojekten

 

Rules

There are no rules for table tbhandhprojekten

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbhandhavingen

public

cfk_handh_projekt

dnkeyhandhprojekt

public.tbhandhprojekten

dnkey

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbhandhprojekten (
 dnkey SERIAL,
 dvomschrijving VARCHAR(40),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 CONSTRAINT cpk_tbhandhprojekten PRIMARY KEY(dnkey)
)
WITH (oids = false);

COMMENT ON TABLE public.tbhandhprojekten
IS 'Tabel met mogelijke handhavings-projectbenamingen';

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

COMMENT ON COLUMN public.tbhandhprojekten.dvomschrijving
IS 'Projektomschrijving zoals aktie tankslag';

COMMENT ON COLUMN public.tbhandhprojekten.ddvervaldatum
IS 'Datum waarvanaf het project niet meer actief is';

CREATE INDEX idx_vervaldatum_projekten ON public.tbhandhprojekten
 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