mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-01 14:49:08 +01:00
6 lines
153 B
Ruby
6 lines
153 B
Ruby
class Smile < ActiveRecord::Base
|
|
belongs_to :user
|
|
belongs_to :answer
|
|
validates :user_id, presence: true
|
|
validates :answer_id, presence: true
|
|
end
|