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

14 lines
191 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +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