action.in_house_use

Deferrable Constraints: The following FK constraints are deferrable — they are checked at transaction end, not statement end: in_house_use_org_unit_fkey, in_house_use_staff_fkey, in_house_use_workstation_fkey.

Columns

Column Type Nullable Default Notes

id PK

integer

No

nextval('action.in_house_use_id_seq'::regclass)

item

bigint

No

staff FK

integer

No

actor.usr(id)

workstation FK

integer

Yes

actor.workstation(id)

org_unit FK

integer

No

actor.org_unit(id)

use_time

timestamp with time zone

No

now()

Primary Key

(id)

Foreign Keys

Column(s) References On Delete On Update Deferrable Constraint

org_unit

actor.org_unit(id)

NO ACTION

NO ACTION

DEFERRED

in_house_use_org_unit_fkey

staff

actor.usr(id)

NO ACTION

NO ACTION

DEFERRED

in_house_use_staff_fkey

workstation

actor.workstation(id)

NO ACTION

NO ACTION

DEFERRED

in_house_use_workstation_fkey

Indexes

Index Method Definition

in_house_use_pkey PK

btree

CREATE UNIQUE INDEX in_house_use_pkey ON action.in_house_use USING btree (id)

action_in_house_use_staff_idx

btree

CREATE INDEX action_in_house_use_staff_idx ON action.in_house_use USING btree (staff)

action_in_house_use_ws_idx

btree

CREATE INDEX action_in_house_use_ws_idx ON action.in_house_use USING btree (workstation)