cartodb-4.29/db/migrate/20140228160605_drop_total_rows_from_geocodings.rb

10 lines
160 B
Ruby
Raw Permalink Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
up do
drop_column :geocodings, :total_rows
end
down do
add_column :geocodings, :total_rows, :integer, default: 0
end
end