acq.provider_contact_address

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

Columns

Column Type Nullable Default Notes

id PK

integer

No

nextval('acq.provider_contact_address_id_seq'::regclass)

valid

boolean

No

true

address_type

text

Yes

contact FK

integer

No

acq.provider_contact(id)

street1

text

No

street2

text

Yes

city

text

No

county

text

Yes

state

text

No

country

text

No

post_code

text

No

fax_phone

text

Yes

Primary Key

(id)

Foreign Keys

Column(s) References On Delete On Update Deferrable Constraint

contact

acq.provider_contact(id)

NO ACTION

NO ACTION

DEFERRED

provider_contact_address_contact_fkey

Indexes

Index Method Definition

provider_contact_address_pkey PK

btree

CREATE UNIQUE INDEX provider_contact_address_pkey ON acq.provider_contact_address USING btree (id)