20091203223145_add_local_identifier_to_choices.rb 205 Bytes
class AddLocalIdentifierToChoices < ActiveRecord::Migration
  def self.up
    add_column :choices, :local_identifier, :string
  end

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