cartodb/db/migrate/20130918100418_add_remote_id_to_geocodings.rb

8 lines
116 B
Ruby
Raw Permalink Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
change do
alter_table :geocodings do
add_column :remote_id, :text
end
end
end