cartodb-4.42/db/migrate/20150518151555_add_geocoding_batching.rb
2024-04-06 05:25:13 +00:00

15 lines
227 B
Ruby

class AddBatchedToGeocoding < Sequel::Migration
def up
alter_table :geocodings do
add_column :batched, :boolean
end
end
def down
alter_table :geocodings do
drop_column :batched
end
end
end