20091203220706_add_local_identifier_to_questions.rb 211 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddLocalIdentifierToQuestions < ActiveRecord::Migration def self.up add_column :questions, :local_identifier, :string end def self.down remove_column :questions, :local_identifier end end