cartodb-4.42/db/migrate/20140206145135_add_cache_hits_to_geocodings.rb

10 lines
168 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
up do
add_column :geocodings, :cache_hits, :integer, default: 0
end
down do
drop_column :geocodings, :cache_hits, :integer
end
end