cartodb-4.29/db/migrate/20150722102858_add_log_to_geocodings.rb

14 lines
191 B
Ruby
Raw Normal View History

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