cartodb-4.42/db/migrate/20131031152839_add_state_to_geocodings.rb

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