techvision/brails4

View on GitHub
app/models/achievement.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Achievement
  include Mongoid::Document

  field :score, type: Integer, default: 0
  field :created_at, type: Time, default: ->{ Time.now }

  validates :topic_id, :score, presence: true

  belongs_to :topic
  embedded_in :profile
end