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

8 lines
125 B
Ruby

Sequel.migration do
change do
alter_table :geocodings do
add_column :processable_rows, :bigint
end
end
end