20091203220706_add_local_identifier_to_questions.rb 211 Bytes
class AddLocalIdentifierToQuestions < ActiveRecord::Migration
  def self.up
    add_column :questions, :local_identifier, :string
  end

  def self.down
    remove_column :questions, :local_identifier
  end
end