Created
July 30, 2012 23:13
-
-
Save Kellyreid/3211742 to your computer and use it in GitHub Desktop.
measurements model
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 Measurement < ActiveRecord::Base | |
attr_accessible :bf, :created_on, :geo, :mass, :note, :user_id, :updated_on | |
belongs_to :user | |
validates :bf, :numericality => true | |
validates :mass, :numericality => true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment