Advertisement
Guest User

Untitled

a guest
May 24th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Caseworker < ActiveRecord::Base
  2. has_many :cases
  3. end
  4.  
  5. class Case < ActiveRecord::Base
  6. belongs_to :caseworkers
  7. end
  8.  
  9. Mysql2::Error: Cannot delete or update a parent row: a foreign key constraint fails
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement