All pastes #2079332 Raw Edit

Miscellany

public text v1 · immutable
#2079332 ·published 2011-09-01 03:09 UTC
rendered paste body
class 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