mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 15:33:35 +01:00
7 lines
153 B
Ruby
7 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
|