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

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