Skip to content

Instantly share code, notes, and snippets.

@Kellyreid
Created July 30, 2012 23:13
Show Gist options
  • Save Kellyreid/3211742 to your computer and use it in GitHub Desktop.
Save Kellyreid/3211742 to your computer and use it in GitHub Desktop.
measurements model
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