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.

14 lines
276 B

  1. # frozen_string_literal: true
  2. class ClearEmailDomainBlocks < ActiveRecord::Migration[5.2]
  3. disable_ddl_transaction!
  4. class EmailDomainBlock < ApplicationRecord
  5. end
  6. def up
  7. EmailDomainBlock.where.not(parent_id: nil).in_batches.delete_all
  8. end
  9. def down; end
  10. end