Schema
public
Owner
waveuser005
Tablespace
(default)
Descriptions
Tabel met mogelijke juridische indicaties t.b.v. inrichtingen zoals hoog, laag, normaal
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
dnkey |
serial |
|
nextval('tbmiljurindic_dnkey_seq'::regclass) |
Primary key. |
|||
|
|
dvcode |
varchar(5) |
|
|
|
|
Codering juridische indicatie. |
|
|
dvomschrijving |
varchar(60) |
|
|
|
|
Omschrijving juridische indicatie. |
|
|
ddvervaldatum |
timestamp |
|
|
|
|
|
Foreign Keys
There are no foreign keys for table tbmiljurindic
Check Constraints
Name | Condition | Description |
---|---|---|
cnn_miljurind_code |
dvcode IS NOT NULL |
|
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
cpk_tbmiljurindic |
btree |
|
dnkey |
|
||
idx_miljurind_vervaldatum |
btree |
|
ddvervaldatum |
|
|
|
Triggers
There are no triggers for table tbmiljurindic
Rules
There are no rules for table tbmiljurindic
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
public |
cfk_tbmilinricht_keyjurindic |
dnkeymiljurindic |
dnkey |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tbmiljurindic (
dnkey SERIAL,
dvcode VARCHAR(5),
dvomschrijving VARCHAR(60),
ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
CONSTRAINT cpk_tbmiljurindic PRIMARY KEY(dnkey),
CONSTRAINT cnn_miljurind_code CHECK (dvcode IS NOT NULL)
)
WITH (oids = false);
COMMENT ON TABLE public.tbmiljurindic
IS 'Tabel met mogelijke juridische indicaties t.b.v. inrichtingen zoals hoog, laag, normaal';
COMMENT ON COLUMN public.tbmiljurindic.dnkey
IS 'Primary key.';
COMMENT ON COLUMN public.tbmiljurindic.dvcode
IS 'Codering juridische indicatie.';
COMMENT ON COLUMN public.tbmiljurindic.dvomschrijving
IS 'Omschrijving juridische indicatie.';
CREATE INDEX idx_miljurind_vervaldatum ON public.tbmiljurindic
USING btree (ddvervaldatum);
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 22-2-2017 10:50 |
![]() ![]() ![]() |