Skip to content

Instantly share code, notes, and snippets.

@vinbarnes
Created February 12, 2022 01:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinbarnes/c8dc0f3b0d7dffbbbba10a3f382b4843 to your computer and use it in GitHub Desktop.
Save vinbarnes/c8dc0f3b0d7dffbbbba10a3f382b4843 to your computer and use it in GitHub Desktop.
# https://guides.rubyonrails.org/active_record_callbacks.html#halting-execution
class Org < ApplicationRecord
before_destroy do
throw :abort unless no_user?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment