agenda-libre-ruby/db/migrate/20150301223829_add_place_na...

7 lines
177 B
Ruby

# Add more data to events, with an optionnal place name
class AddPlaceNameToEvents < ActiveRecord::Migration
def change
add_column :events, :place_name, :string
end
end