Schema
public
Owner
waveuser005
Tablespace
(default)
Descriptions
Tabel met gebiedstyperingen zoals stiltegebied, stadskern, industrieterrein
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
dnkey |
serial |
|
nextval('tbmiltypegebied_dnkey_seq'::regclass) |
Primary key. |
|||
|
|
dvomschrijving |
varchar(40) |
|
|
|
|
Omschrijving gebiedstype. |
|
|
ddvervaldatum |
timestamp |
|
|
|
|
|
Foreign Keys
There are no foreign keys for table tbmiltypegebied
Check Constraints
Name | Condition | Description |
---|---|---|
cnn_miltypgeb_oms |
dvomschrijving IS NOT NULL |
|
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
cpk_tbmiltypegebied |
btree |
|
dnkey |
|
||
idx_miltypgeb_vervaldatum |
btree |
|
ddvervaldatum |
|
|
|
Triggers
There are no triggers for table tbmiltypegebied
Rules
There are no rules for table tbmiltypegebied
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
public |
cfk_tbmilgebied_keytypgeb |
dnkeymiltypegebied |
dnkey |
No Action |
No Action |
|
Immediate |
|
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tbmiltypegebied (
dnkey SERIAL,
dvomschrijving VARCHAR(40),
ddvervaldatum TIMESTAMP WITHOUT TIME ZONE,
CONSTRAINT cpk_tbmiltypegebied PRIMARY KEY(dnkey),
CONSTRAINT cnn_miltypgeb_oms CHECK (dvomschrijving IS NOT NULL)
)
WITH (oids = false);
COMMENT ON TABLE public.tbmiltypegebied
IS 'Tabel met gebiedstyperingen zoals stiltegebied, stadskern, industrieterrein';
COMMENT ON COLUMN public.tbmiltypegebied.dnkey
IS 'Primary key.';
COMMENT ON COLUMN public.tbmiltypegebied.dvomschrijving
IS 'Omschrijving gebiedstype.';
CREATE INDEX idx_miltypgeb_vervaldatum ON public.tbmiltypegebied
USING btree (ddvervaldatum);
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 22-2-2017 10:50 |
![]() ![]() ![]() |