Schema
public
Owner
waveuser005
Tablespace
(default)
Descriptions
Tabel met afrondingsmanieren van een milieu-klacht zoals doorgestuurd, niet gegrond
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
dnkey |
serial |
|
nextval('tbklachtafrond_dnkey_seq'::regclass) |
Primary key. |
|||
|
|
dvcodeafronding |
varchar(10) |
|
|
|
|
Codering van afrondingswijze. |
|
|
dvomsafronding |
varchar(50) |
|
|
|
|
Wijze van afronding bijv: voortgezet in inspectie of voortegzet in handhavingtraject of ter kennisgeving aangenomen etcetera. |
|
|
ddvervaldatum |
timestamp |
|
|
|
|
Datum dat afrondingswijze vervallen is. |
Foreign Keys
There are no foreign keys for table tbklachtafrond
Check Constraints
Name | Condition | Description |
---|---|---|
cnn_klachtafrond_dvcode |
dvcodeafronding IS NOT NULL |
|
cnn_klachtafrond_dvoms |
dvomsafronding IS NOT NULL |
|
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
cpk_tbklachtafrond |
btree |
|
dnkey |
|
Triggers
There are no triggers for table tbklachtafrond
Rules
There are no rules for table tbklachtafrond
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
public |
cfk_klachten_tbklachtafrond |
dnkeyklachtafrond |
dnkey |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tbklachtafrond (
dnkey SERIAL,
dvcodeafronding VARCHAR(10),
dvomsafronding VARCHAR(50),
ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
CONSTRAINT cpk_tbklachtafrond PRIMARY KEY(dnkey),
CONSTRAINT cnn_klachtafrond_dvcode CHECK (dvcodeafronding IS NOT NULL),
CONSTRAINT cnn_klachtafrond_dvoms CHECK (dvomsafronding IS NOT NULL)
)
WITH (oids = false);
COMMENT ON TABLE public.tbklachtafrond
IS 'Tabel met afrondingsmanieren van een milieu-klacht zoals doorgestuurd, niet gegrond';
COMMENT ON COLUMN public.tbklachtafrond.dnkey
IS 'Primary key.';
COMMENT ON COLUMN public.tbklachtafrond.dvcodeafronding
IS 'Codering van afrondingswijze.';
COMMENT ON COLUMN public.tbklachtafrond.dvomsafronding
IS 'Wijze van afronding bijv: voortgezet in inspectie of voortegzet in handhavingtraject of ter kennisgeving aangenomen etcetera.';
COMMENT ON COLUMN public.tbklachtafrond.ddvervaldatum
IS 'Datum dat afrondingswijze vervallen is.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 22-2-2017 10:50 |
![]() ![]() ![]() |