Datadictionary OpenWave 3.1.11
Previous topic Chapter index Next topic

Table: tbchecklistnaam

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel van gedefinieerde checklijsten

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbchecklistnaam_dnkey_seq'::regclass)

Primary key.

 

 

dvomschrijving

varchar(30)

 

 

 

 

Naam van de checklist.

 

 

dvvantoepop

char(1)

 

 

 

'P'::bpchar

Alleen de waarde P of I of C of O. (P)rocedures of (I)nspecties of (C)ontactadressen of Objectregistratie.

 

 

ddvervaldatum

timestamp

 

 

 

 

Datum dat checklist niet meer geldt.

 

 

dvindelenin

char(10)

 

 

 

 

Nadere indeling van modules waarvoor de checklist geldig is: Een combinatie van de volgende letters is mogelijk: B= bouw.sloop C= Horeca O = Overig I = Infoaanvragen S - bestemmingsplannen H = handhaving E = Inrichting en Milieu/brandweer V = Vestigingen (inrichtingen) W= Omgevingvergunning.

 

 

dvalleengemeentes

varchar(200)

 

 

 

 

Opsomming van gemeentecodes gescheiden door puntkomma die het domein van de checklist bepalen. Leeg betekent geen beperking

 

Foreign Keys

There are no foreign keys for table tbchecklistnaam

 

Check Constraints

Name

Condition

Description

chk_cheklistnm_dvvantoep

dvvantoepop = ANY (ARRAY['P'::bpchar, 'I'::bpchar, 'O'::bpchar, 'C'::bpchar])

 

cnn_checklist_oms

dvomschrijving IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbchecklistnaam

btree

 

dnkey

 

idx_checklistnaam_vervaldat

btree

 

ddvervaldatum

 

 

 

 

Triggers

There are no triggers for table tbchecklistnaam

 

Rules

There are no rules for table tbchecklistnaam

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbchkitbeheer

public

cfk_tbchkitbeh_tbcheck

dnkeychecklistnaam

public.tbchecklistnaam

dnkey

Cascade

No Action

 

Immediate

 

tbchkitwerk

public

cfk_tbchkitwerk_tbcheck

dnkeychecklistnaam

public.tbchecklistnaam

dnkey

Set Null

No Action

 

Immediate

 

tbkopproccheck

public

cfk_tbkopproc_tbcheck

dnkeychecklistnaam

public.tbchecklistnaam

dnkey

Cascade

No Action

 

Immediate

 

tbprocitemcheck

public

cfk_procitemcheck_keycheck

dnkeychecklistnaam

public.tbchecklistnaam

dnkey

Cascade

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

 

Definition

CREATE TABLE public.tbchecklistnaam (
 dnkey SERIAL,
 dvomschrijving VARCHAR(30),
 dvvantoepop CHAR(1) DEFAULT 'P'::bpchar,
 ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
 dvindelenin CHAR(10),
 dvalleengemeentes VARCHAR(200),
 CONSTRAINT cpk_tbchecklistnaam PRIMARY KEY(dnkey),
 CONSTRAINT chk_cheklistnm_dvvantoep CHECK (dvvantoepop = ANY (ARRAY['P'::bpchar, 'I'::bpchar, 'O'::bpchar, 'C'::bpchar])),
 CONSTRAINT cnn_checklist_oms CHECK (dvomschrijving IS NOT NULL)
)
WITH (oids = false);

COMMENT ON TABLE public.tbchecklistnaam
IS 'Tabel van gedefinieerde checklijsten';

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

COMMENT ON COLUMN public.tbchecklistnaam.dvomschrijving
IS 'Naam van de checklist.';

COMMENT ON COLUMN public.tbchecklistnaam.dvvantoepop
IS 'Alleen de waarde P of I of C of O. (P)rocedures of (I)nspecties of (C)ontactadressen of Objectregistratie.';

COMMENT ON COLUMN public.tbchecklistnaam.ddvervaldatum
IS 'Datum dat checklist niet meer geldt.';

COMMENT ON COLUMN public.tbchecklistnaam.dvindelenin
IS 'Nadere indeling van modules waarvoor de checklist geldig is: Een combinatie van de volgende letters is mogelijk: B= bouw.sloop C= Horeca O = Overig I = Infoaanvragen S - bestemmingsplannen H = handhaving E = Inrichting en Milieu/brandweer V = Vestigingen (inrichtingen) W= Omgevingvergunning.';

COMMENT ON COLUMN public.tbchecklistnaam.dvalleengemeentes
IS 'Opsomming van gemeentecodes gescheiden door puntkomma die het domein van de checklist bepalen. Leeg betekent geen beperking';

CREATE INDEX idx_checklistnaam_vervaldat ON public.tbchecklistnaam
 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