summaryrefslogtreecommitdiff
path: root/db/migrate/20090318203913_add_location_to_event.rb
blob: 40dfbf18dee5fac316b88688971276b20ecbee9d (plain)
1
2
3
4
5
6
7
8
9
class AddLocationToEvent < ActiveRecord::Migration[4.2]
  def self.up
    add_column :events, :location, :text
  end

  def self.down
    remove_column :events, :location
  end
end