Skip to content

Instantly share code, notes, and snippets.

@chourobin
Created October 18, 2012 19:24
Show Gist options
  • Save chourobin/3914236 to your computer and use it in GitHub Desktop.
Save chourobin/3914236 to your computer and use it in GitHub Desktop.
Ensure not referenced by another record
before_destroy :ensure_not_referenced_by_any_line_item
def ensure_not_referenced_by_any_line_item
if line_items.count.zero?
return true
else
errors[:base] << "Line Items Present"
return false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment