You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20140704120337_add_quotas_t...

12 lines
267 B

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