Newer
Older
dmpopidor / db / migrate / 20180813114719_remove_question_id_from_guidances.rb
@Bodacious Bodacious on 13 Aug 2018 192 bytes Remove redundant database tables and columns
class RemoveQuestionIdFromGuidances < ActiveRecord::Migration
  def up
    remove_column :guidances, :question_id
  end

  def down
    add_column :guidances, :question_id, :integer
  end
end