cartodb-4.42/db/migrate/20131031152839_add_state_to_geocodings.rb
2024-04-06 05:25:13 +00:00

14 lines
189 B
Ruby

Sequel.migration do
up do
alter_table :geocodings do
add_column :state, :text
end
end
down do
alter_table :geocodings do
drop_column :state
end
end
end