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

10 lines
160 B
Ruby

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