mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
* Add map to splash * Reverse venue<->conference relation * Split venue address into fields * Don't go through venue for lodgings anymore
7 lines
219 B
Ruby
7 lines
219 B
Ruby
class CleanupVenue < ActiveRecord::Migration
|
|
def change
|
|
change_column :venues, :name, :string
|
|
remove_column :venues, :offline_map_url, :string
|
|
remove_column :venues, :offline_map_bounds, :string
|
|
end
|
|
end
|