cartodb-4.42/db/migrate/20131030112026_add_geocoding_block_price_to_users.rb

14 lines
214 B
Ruby
Raw Normal View History

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