Schema
public
Owner
waveuser005
Tablespace
(default)
Descriptions
Tabel met inspectie verzwaringen, te kiezen bij inspectietraject
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
|---|---|---|---|---|---|---|---|---|
|
|
dnkey |
serial |
|
|
|
nextval('tbinspverzwaringen_dnkey_seq'::regclass) |
Primary key |
|
|
dvcode |
varchar(40) |
|
|
|
|
Code van de inspectie verzwaring |
|
|
dvomschrijving |
varchar(500) |
|
|
|
|
Omschrijving van de inspectie verzwaring |
|
|
ddvervaldatum |
timestamp |
|
|
|
|
Datum dat de inspectie verzwaring vervallen is |
Foreign Keys
There are no foreign keys for table tbinspverzwaringen
Check Constraints
Name | Condition | Description |
|---|---|---|
cnn_tbinspverzwaringen_dvcode |
dvcode IS NOT NULL |
|
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
|---|---|---|---|---|---|---|
cpk_tbinspverzwaringen |
btree |
|
dnkey |
|
|
|
Triggers
There are no triggers for table tbinspverzwaringen
Rules
There are no rules for table tbinspverzwaringen
Policies
There are no policies for table tbinspverzwaringen
Referenced
Table | Schema | Foreign Key | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
|---|---|---|---|---|---|---|---|---|---|---|
public |
cfk_tbinspaanlverzwaring_keyinspverzwaring |
dnkeyinspverzwaring |
dnkey |
Cascade |
No Action |
|
Immediate |
|
||
public |
cfk_tbinspecties_keyverzwaring1 |
dnkeyverzwaring1 |
dnkey |
Cascade |
No Action |
|
Immediate |
|
||
public |
cfk_tbinspecties_keyverzwaring2 |
dnkeyverzwaring2 |
dnkey |
Cascade |
No Action |
|
Immediate |
|
Properties
Property | Value |
|---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.tbinspverzwaringen (
dnkey SERIAL,
dvcode VARCHAR(40),
dvomschrijving VARCHAR(500),
ddvervaldatum TIMESTAMP WITHOUT TIME ZONE STORAGE PLAIN,
CONSTRAINT cpk_tbinspverzwaringen PRIMARY KEY(dnkey),
CONSTRAINT cnn_tbinspverzwaringen_dvcode CHECK (dvcode IS NOT NULL)
) ;
COMMENT ON TABLE public.tbinspverzwaringen
IS 'Tabel met inspectie verzwaringen, te kiezen bij inspectietraject';
COMMENT ON COLUMN public.tbinspverzwaringen.dnkey
IS 'Primary key';
COMMENT ON COLUMN public.tbinspverzwaringen.dvcode
IS 'Code van de inspectie verzwaring';
COMMENT ON COLUMN public.tbinspverzwaringen.dvomschrijving
IS 'Omschrijving van de inspectie verzwaring';
COMMENT ON COLUMN public.tbinspverzwaringen.ddvervaldatum
IS 'Datum dat de inspectie verzwaring vervallen is';
This file was generated with SQL Manager for PostgreSQL (www.sqlmanager.net/products/postgresql/manager) at 18/05/2026 15:10 |
|