072_add_terms_of_use_acceptance_text.rb 239 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class AddTermsOfUseAcceptanceText < ActiveRecord::Migration def self.up add_column :environments, :terms_of_use_acceptance_text, :string end def self.down remove_column :environments, :terms_of_use_acceptance_text end end