Last active
November 20, 2023 12:34
-
-
Save joshuapinter/4241250 to your computer and use it in GitHub Desktop.
Rails Model Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class [Your Class Here] < ActiveRecord::Base | |
################################################################################################## | |
### Attributes ################################################################################### | |
################################################################################################## | |
### Constants #################################################################################### | |
################################################################################################## | |
### Includes and Extensions ###################################################################### | |
################################################################################################## | |
### Callbacks #################################################################################### | |
################################################################################################## | |
### Associations ################################################################################# | |
################################################################################################## | |
### Validations ################################################################################## | |
################################################################################################## | |
### Scopes ####################################################################################### | |
################################################################################################## | |
### Other ######################################################################################## | |
################################################################################################## | |
### Class Methods ################################################################################ | |
################################################################################################## | |
### Instance Methods ############################################################################# | |
######### | |
protected | |
######### | |
####### | |
private | |
####### | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated the model template so that Callbacks come before Associations. This is to prevent weird situations happening with
dependent: :destroy
where child objects are destroyed before hitting abefore_destroy
callback.See the following for more details:
rails/rails#3458
https://stackoverflow.com/questions/31343453/ruby-on-rails-association-gets-deleted-before-before-destroy