Schema
public
Owner
waveuser005
Tablespace
(default)
Descriptions
Tabel met statussen en omschrijvingingen van besluiten op een horeca-vergunningsaanvraag zoals verleend, geweigerd
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
dvcode |
char(1) |
|
|
Primary key. |
|||
|
|
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 |
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]) |
|
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
cpk_tbhoraardbesluit |
btree |
|
dvcode |
|
Triggers
There are no triggers for table tbhoraardbesluit
Rules
There are no rules for table tbhoraardbesluit
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
public |
cfk_horverg_aardbesluit |
dvcodeaardbesluit |
dvcode |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tbhoraardbesluit (
dvcode CHAR(1) NOT NULL,
dvomschrijving VARCHAR(50),
ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
dlverleend CHAR(1) DEFAULT 'F'::bpchar,
dvdmsaardbesl VARCHAR(40),
CONSTRAINT cpk_tbhoraardbesluit PRIMARY KEY(dvcode),
CONSTRAINT chk_horaardbesl_verleend CHECK (dlverleend = ANY (ARRAY['T'::bpchar, 'F'::bpchar]))
)
WITH (oids = false);
COMMENT ON TABLE public.tbhoraardbesluit
IS 'Tabel met statussen en omschrijvingingen van besluiten op een horeca-vergunningsaanvraag zoals verleend, geweigerd';
COMMENT ON COLUMN public.tbhoraardbesluit.dvcode
IS 'Primary key.';
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';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 22-2-2017 10:50 |
![]() ![]() ![]() |