Displaying 1 result from an estimated 1 matches for "fk_contents_contents_sections".
2006 May 28
1
ActiveRecord: FK constraints problem
...:nullify
end
class Content < ActiveRecord::Base
belongs_to :section
end
When I trying to remove some Content which associated with Section I
have an error related to foreigh key violation:
"PGError: ERROR: update or delete on "contents" violates foreign key
constraint "fk_contents_contents_sections" on "contents_sections"
DETAIL: Key (id)=(7) is still referenced from table "contents_sections".
: DELETE FROM contents
WHERE id = 7"
And when I trying to remove Content which belongs to "default_content" of some Section
I have an er...