DVGM/app/models/grade.rb

9 lines
300 B
Ruby
Raw Normal View History

2017-10-22 18:56:44 +00:00
class Grade < ApplicationRecord
2019-02-21 21:54:26 +00:00
has_one_attached :submission
2017-10-22 18:56:44 +00:00
belongs_to :lecture
belongs_to :student
2019-02-21 21:54:26 +00:00
validates_numericality_of :grade , :less_than_or_equal_to=>100, :greater_than_or_equal_to=>0, :allow_nil => true
2017-10-22 18:56:44 +00:00
validates :lecture, presence: true
validates :student, presence: true
end