20091203223145_add_local_identifier_to_choices.rb 205 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddLocalIdentifierToChoices < ActiveRecord::Migration def self.up add_column :choices, :local_identifier, :string end def self.down remove_column :choices, :local_identifier end end