cartodb-4.42/db/migrate/20140305112732_add_extra_fields_to_geocodings.rb

10 lines
198 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
change do
alter_table :geocodings do
add_column :kind, :text
add_column :country_code, :text
add_column :geometry_type, :text
end
end
end