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/20190513115753_add_regular_...

13 lines
241 B

require 'carto/db/migration_helper'
include Carto::Db::MigrationHelper
migration(
Proc.new do
add_column :users, :regular_api_key_quota, Integer, null: true
end,
Proc.new do
drop_column :users, :regular_api_key_quota
end
)