action.batch_hold_event_map

Cascading Deletes: Deleting rows from this table will cascade to: action.batch_hold_event, action.hold_request.

Columns

Column Type Nullable Default Notes

id PK

integer

No

nextval('action.batch_hold_event_map_id_seq'::regclass)

batch_hold_event FK

integer

No

action.batch_hold_event(id)

hold FK

integer

No

action.hold_request(id)

Primary Key

(id)

Foreign Keys

Column(s) References On Delete On Update Deferrable Constraint

batch_hold_event

action.batch_hold_event(id)

CASCADE

CASCADE

No

batch_hold_event_map_batch_hold_event_fkey

hold

action.hold_request(id)

CASCADE

CASCADE

No

batch_hold_event_map_hold_fkey

Indexes

Index Method Definition

batch_hold_event_map_pkey PK

btree

CREATE UNIQUE INDEX batch_hold_event_map_pkey ON action.batch_hold_event_map USING btree (id)