cartodb-4.29/db/migrate/20131121121304_add_table_id_to_geocodings.rb

10 lines
142 B
Ruby
Raw Permalink Normal View History

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