Created
July 24, 2012 06:13
-
-
Save we4tech/3168329 to your computer and use it in GitHub Desktop.
Sample active record model
This file contains hidden or 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 Page < ActiveRecord::Base | |
attr_accessible :body, :metadata, :title, :store_id | |
# Relationships | |
belongs_to :store | |
# Validations | |
validates_presence_of :title, :body, :store_id | |
# Scopes | |
scope :recent, order('created_at DESC') | |
# Utilities | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment