summaryrefslogtreecommitdiff
path: root/db/migrate/20090318212438_remove_summary_column_from_occurrences.rb
blob: 101b87c176039a5231b3e439d1f6ce0a1a0bb1ab (plain)
1
2
3
4
5
6
7
8
9
class RemoveSummaryColumnFromOccurrences < ActiveRecord::Migration[4.2]
  def self.up
    remove_column :occurrences, :summary
  end

  def self.down
    add_column :occurrences, :summary, :string
  end
end