container.user_bucket_item_note

Cascading Deletes: Deleting rows from this table will cascade to: container.user_bucket_item.

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

Columns

Column Type Nullable Default Notes

id PK

integer

No

nextval('container.user_bucket_item_note_id_seq'::regclass)

item FK

integer

No

container.user_bucket_item(id)

note

text

No

Primary Key

(id)

Foreign Keys

Column(s) References On Delete On Update Deferrable Constraint

item

container.user_bucket_item(id)

CASCADE

CASCADE

DEFERRED

user_bucket_item_note_item_fkey

Indexes

Index Method Definition

user_bucket_item_note_pkey PK

btree

CREATE UNIQUE INDEX user_bucket_item_note_pkey ON container.user_bucket_item_note USING btree (id)