8 lines
175 B
Ruby
8 lines
175 B
Ruby
class AssignmentLog < ApplicationRecord
|
|
belongs_to :item
|
|
belongs_to :user, optional: true
|
|
belongs_to :room, optional: true
|
|
|
|
validates :assigned_at, presence: true
|
|
end
|