20091203170231_add_site_id_to_questions.rb 185 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddSiteIdToQuestions < ActiveRecord::Migration def self.up add_column :questions, :site_id, :integer end def self.down remove_column :questions, :site_id end end