Miscellany
public text v1 · immutableclass Question < ActiveRecord::Base
belongs_to :user
belongs_to :category
has_many :answers
before_save :create_question_slug
def create_question_slug
self.question_slug = self.question_title.downcase.gsub(" ","_")
end
end