cartodb/db/migrate/20131030112026_add_geocoding_block_price_to_users.rb

14 lines
214 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
up do
alter_table :users do
add_column :geocoding_block_price, :integer
end
end
down do
alter_table :users do
drop_column :geocoding_block_price
end
end
end