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.

20210801145548_remove_bcc_recipients_setting.rb 143B

12345
  1. class RemoveBccRecipientsSetting < ActiveRecord::Migration[6.1]
  2. def change
  3. Setting.where(:name => 'bcc_recipients').delete_all
  4. end
  5. end