cartodb/db/migrate/20140704120337_add_quotas_to_organizations.rb

12 lines
267 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
up do
add_column :organizations, :geocoding_quota, :integer
add_column :organizations, :map_view_quota, :integer
end
down do
drop_column :organizations, :geocoding_quota
drop_column :organizations, :map_view_quota
end
end