Datadictionary OpenWave 3.1.32
Previous topic Chapter index Next topic

Table: tbhandhafronding

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met afrondingstatussen van een handhavingszaak zoals volledig, niet, gedeeltelijk

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

 

dvcode

varchar(5)

 

 

Codering van afronding.

 

 

dvomschrijving

varchar(50)

 

 

 

 

Omschrijving hoe de handhavingsprocedure is afgerond (ingetrokken).

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum waarvanaf afrondingscode niet meer geldig is.

 

 

dvdmsaardbesluit

varchar(40)

 

 

 

 

Vertaling van het aard besluit naar het DMS/zaaksysteem.

 

dnkey

serial

 

nextval('tbhandhafronding_dnkey_seq'::regclass)

Primary key

 

Foreign Keys

There are no foreign keys for table tbhandhafronding

 

Check Constraints

Name

Condition

Description

cnn_handhafronding_dvcode

dvcode IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbhandhafronding

btree

 

dnkey

 

idu_tbhandhafronding_dvcode

btree

 

dvcode

 

 

idx_vervaldatum_handhafronding

btree

 

ddvervaldatum

 

 

 

 

Triggers

There are no triggers for table tbhandhafronding

 

Rules

There are no rules for table tbhandhafronding

 

Policies

There are no policies for table tbhandhafronding

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbhandhavingen

public

cfk_handh_handhafronding

dnkeyhandhafronding

public.tbhandhafronding

dnkey

No Action

No Action

 

Immediate

 

tbhhafrondsoortzaak

public

cfk_tbhhafrondsoortzaak_keyhandhafronding

dnkeyhandhafronding

public.tbhandhafronding

dnkey

Cascade

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tbhandhafronding (
 dvcode VARCHAR(5) NOT NULL,
 dvomschrijving VARCHAR(50),
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 dvdmsaardbesluit VARCHAR(40),
 dnkey SERIAL,
 CONSTRAINT cpk_tbhandhafronding PRIMARY KEY(dnkey),
 CONSTRAINT cnn_handhafronding_dvcode CHECK (dvcode IS NOT NULL)
) ;

COMMENT ON TABLE public.tbhandhafronding
IS 'Tabel met afrondingstatussen van een handhavingszaak zoals volledig, niet, gedeeltelijk';

COMMENT ON COLUMN public.tbhandhafronding.dvcode
IS 'Codering van afronding.';

COMMENT ON COLUMN public.tbhandhafronding.dvomschrijving
IS 'Omschrijving hoe de handhavingsprocedure is afgerond (ingetrokken).';

COMMENT ON COLUMN public.tbhandhafronding.ddvervaldatum
IS 'Datum waarvanaf afrondingscode niet meer geldig is.';

COMMENT ON COLUMN public.tbhandhafronding.dvdmsaardbesluit
IS 'Vertaling van het aard besluit naar het DMS/zaaksysteem.';

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

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

CREATE INDEX idx_vervaldatum_handhafronding ON public.tbhandhafronding
 USING btree (ddvervaldatum);

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