Answers for "pg::foreignkeyviolation: error: update or delete on table "posts" violates foreign key constraint "fk_rails_fb8c7afa97" on table "elements" detail: key (id)=(2) is still referenced from table "elements"."

SQL
0

PG::ForeignKeyViolation: ERROR: update or delete on table violates foreign key constraint

has_many :comments, dependent: :delete_all - just automatically delete them when the user is deleted

has_many :comments, dependent: :destroy - like above, but call #destroy on each comment instead of just deleting directly in the db

has_many :comments, dependent: :nullify - don't delete comments when the user is deleted, just null out their user_id column
Posted by: Guest on February-04-2021

Code answers related to "pg::foreignkeyviolation: error: update or delete on table "posts" violates foreign key constraint "fk_rails_fb8c7afa97" on table "elements" detail: key (id)=(2) is still referenced from table "elements"."

Code answers related to "SQL"

Browse Popular Code Answers by Language