When we ask question in stackoverflow, and somebody answer your question, then the model relationship will be
class Question < ActiveRecord::Base
has_many :answers
end
class Answer < ActiveRecord::Base
belongs_to :question
end
you will take one answer as the best answer of your question, then the relationship is
class Question
has_one answer (the best one)
end
but sometimes, question hasn't best answer (such as: no answer is provided)
my question is how to express the relationship between Question an BEST answer.
