openstreetmap-website/db/migrate/20140117185510_drop_countries.rb
Tom Hughes 42b329ed82 Replace the country table with a static XML countries file
Storing the countries in the database is overkill, so just use a
copy of the geonames countryInfo data that is loaded into a hash
the first time it is used.
2014-01-17 19:25:58 +00:00

5 lines
95 B
Ruby

class DropCountries < ActiveRecord::Migration
def change
drop_table :countries
end
end