Datadictionary OpenWave 3.1.25
Previous topic Chapter index Next topic

Table: tbroebprijzen

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel met prijzen per eenheid per ROEB subcategorie tbv van berekening vastgestelde kosten

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbroebprijzen_dnkey_seq'::regclass)

Primary key.

 

dnkeyroebsubcat

integer

 

 

 

 

Foreign key naar tbroebsubcat.dnkey

 

 

dddatumvanaf

timestamp

 

 

 

 

Datum vanaf dat bedrag gehanteerd moet worden bij subcategorie (verwijst naar startdatum van zaak)

 

 

dfbedragexcbwt

double precision

 

 

 

 

Bedrag per eenheid exclusief btw

 

 

dveenheid

varchar(10)

 

 

 

 

Bijvoorbeeld m2 of m3 of meter

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

cfk_tbroebprijzen_keyroebsbcat

dnkeyroebsubcat

public.tbroebsubcat

dnkey

Cascade

No Action

 

Immediate

 

 

Check Constraints

Name

Condition

Description

cnn_tbroebprijzen_dddatvanaf

dddatumvanaf IS NOT NULL

 

cnn_tbroebprijzen_keyroebsbcat

dnkeyroebsubcat IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbroebprijzen

btree

 

dnkey

 

idu_roebprijzen_dat

btree

 

dnkeyroebsubcat, dddatumvanaf

 

 

 

Triggers

There are no triggers for table tbroebprijzen

 

Rules

There are no rules for table tbroebprijzen

 

Policies

There are no policies for table tbroebprijzen

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

tbroebtoest

public

cfk_tbroebtoest_keyroebprijzen

dnkeyroebprijzen

public.tbroebprijzen

dnkey

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tbroebprijzen (
 dnkey SERIAL,
 dnkeyroebsubcat INTEGER,
 dddatumvanaf TIMESTAMP WITHOUT TIME ZONE,
 dfbedragexcbwt DOUBLE PRECISION,
 dveenheid VARCHAR(10),
 CONSTRAINT cpk_tbroebprijzen PRIMARY KEY(dnkey),
 CONSTRAINT cnn_tbroebprijzen_dddatvanaf CHECK (dddatumvanaf IS NOT NULL),
 CONSTRAINT cnn_tbroebprijzen_keyroebsbcat CHECK (dnkeyroebsubcat IS NOT NULL),
 CONSTRAINT cfk_tbroebprijzen_keyroebsbcat FOREIGN KEY (dnkeyroebsubcat)
   REFERENCES public.tbroebsubcat(dnkey)
   ON DELETE CASCADE
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE public.tbroebprijzen
IS 'Tabel met prijzen per eenheid  per ROEB subcategorie tbv van berekening vastgestelde kosten';

COMMENT ON COLUMN public.tbroebprijzen.dnkey
IS 'Primary key.';

COMMENT ON COLUMN public.tbroebprijzen.dnkeyroebsubcat
IS 'Foreign key naar tbroebsubcat.dnkey';

COMMENT ON COLUMN public.tbroebprijzen.dddatumvanaf
IS 'Datum vanaf dat bedrag gehanteerd moet worden bij subcategorie (verwijst naar startdatum van zaak)';

COMMENT ON COLUMN public.tbroebprijzen.dfbedragexcbwt
IS 'Bedrag per eenheid exclusief btw';

COMMENT ON COLUMN public.tbroebprijzen.dveenheid
IS 'Bijvoorbeeld m2 of m3 of meter';

CREATE UNIQUE INDEX idu_roebprijzen_dat ON public.tbroebprijzen
 USING btree (dnkeyroebsubcat, dddatumvanaf);

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 5-1-2022 14:13
Previous topic Chapter index Next topic