actor.address_alert

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

Columns

Column Type Nullable Default Notes

id PK

integer

No

nextval('actor.address_alert_id_seq'::regclass)

owner FK

integer

No

actor.org_unit(id)

active

boolean

No

true

match_all

boolean

No

true

alert_message

text

No

street1

text

Yes

street2

text

Yes

city

text

Yes

county

text

Yes

state

text

Yes

country

text

Yes

post_code

text

Yes

mailing_address

boolean

No

false

billing_address

boolean

No

false

Primary Key

(id)

Foreign Keys

Column(s) References On Delete On Update Deferrable Constraint

owner

actor.org_unit(id)

NO ACTION

NO ACTION

DEFERRED

address_alert_owner_fkey

Indexes

Index Method Definition

address_alert_pkey PK

btree

CREATE UNIQUE INDEX address_alert_pkey ON actor.address_alert USING btree (id)