cartodb/db/migrate/20131031152839_add_state_to_geocodings.rb

14 lines
189 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 :state, :text
end
end
down do
alter_table :geocodings do
drop_column :state
end
end
end