container.user_bucket_note

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

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

Columns

Column Type Nullable Default Notes

id PK

integer

No

nextval('container.user_bucket_note_id_seq'::regclass)

bucket FK

integer

No

container.user_bucket(id)

note

text

No

Primary Key

(id)

Foreign Keys

Column(s) References On Delete On Update Deferrable Constraint

bucket

container.user_bucket(id)

CASCADE

CASCADE

DEFERRED

user_bucket_note_bucket_fkey

Indexes

Index Method Definition

user_bucket_note_pkey PK

btree

CREATE UNIQUE INDEX user_bucket_note_pkey ON container.user_bucket_note USING btree (id)