cartodb/db/migrate/20140206145135_add_cache_hits_to_geocodings.rb
2020-06-15 10:58:47 +08:00

10 lines
168 B
Ruby

Sequel.migration do
up do
add_column :geocodings, :cache_hits, :integer, default: 0
end
down do
drop_column :geocodings, :cache_hits, :integer
end
end