Schema
public
Owner
waveuser005
Tablespace
(default)
Descriptions
Tabel met statussen en omschrijvingen van besluiten op een horeca-vergunningsaanvraag zoals verleend, geweigerd
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
|
dvcode |
varchar(5) |
|
|
Codering van aardbelsuit. |
||
|
|
dvomschrijving |
varchar(50) |
|
|
|
|
Omschrijving besluit. |
|
|
ddvervaldatum |
timestamp |
|
|
|
|
VervalDatum. |
|
|
dlverleend |
char(1) |
|
|
|
'F'::bpchar |
T of F. |
|
|
dvdmsaardbesl |
varchar(40) |
|
|
|
|
Vertaling van het aard besluit naar het DMS/zaaksysteem. |
|
dnkey |
serial |
|
nextval('tbhoraardbesluit_dnkey_seq'::regclass) |
Primary key. |
Foreign Keys
There are no foreign keys for table tbhoraardbesluit
Check Constraints
Name | Condition | Description |
---|---|---|
chk_horaardbesl_verleend |
dlverleend = ANY (ARRAY['T'::bpchar, 'F'::bpchar]) |
|
cnn_horaardbesluit_dvcode |
dvcode IS NOT NULL |
|
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
cpk_tbhoraardbesluit |
btree |
|
dnkey |
|
||
idu_tbhoraardbesluit_dvcode |
btree |
|
dvcode |
|
|
Triggers
There are no triggers for table tbhoraardbesluit
Rules
There are no rules for table tbhoraardbesluit
Policies
There are no policies for table tbhoraardbesluit
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
public |
cfk_tbhoraardbsrtzaak_keyhoraardbesluit |
dnkeyhoraardbesluit |
dnkey |
Cascade |
No Action |
|
Immediate |
|
||
public |
cfk_horverg_aardbesluit |
dnkeyhoraardbesluit |
dnkey |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tbhoraardbesluit (
dvcode VARCHAR(5) NOT NULL,
dvomschrijving VARCHAR(50),
ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
dlverleend CHAR(1) DEFAULT 'F'::bpchar,
dvdmsaardbesl VARCHAR(40),
dnkey SERIAL,
CONSTRAINT cpk_tbhoraardbesluit PRIMARY KEY(dnkey),
CONSTRAINT chk_horaardbesl_verleend CHECK (dlverleend = ANY (ARRAY['T'::bpchar, 'F'::bpchar])),
CONSTRAINT cnn_horaardbesluit_dvcode CHECK (dvcode IS NOT NULL)
) ;
COMMENT ON TABLE public.tbhoraardbesluit
IS 'Tabel met statussen en omschrijvingen van besluiten op een horeca-vergunningsaanvraag zoals verleend, geweigerd';
COMMENT ON COLUMN public.tbhoraardbesluit.dvcode
IS 'Codering van aardbelsuit.';
COMMENT ON COLUMN public.tbhoraardbesluit.dvomschrijving
IS 'Omschrijving besluit.';
COMMENT ON COLUMN public.tbhoraardbesluit.ddvervaldatum
IS 'VervalDatum.';
COMMENT ON COLUMN public.tbhoraardbesluit.dlverleend
IS 'T of F.';
COMMENT ON COLUMN public.tbhoraardbesluit.dvdmsaardbesl
IS 'Vertaling van het aard besluit naar het DMS/zaaksysteem.';
COMMENT ON COLUMN public.tbhoraardbesluit.dnkey
IS 'Primary key.';
CREATE UNIQUE INDEX idu_tbhoraardbesluit_dvcode ON public.tbhoraardbesluit
USING btree (dvcode COLLATE pg_catalog."default");
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 2-5-2025 13:49 |
![]() ![]() ![]() |