summaryrefslogtreecommitdiffstats
path: root/db/migrate/20210801145548_remove_bcc_recipients_setting.rb
blob: ed0eb11ea41f43400d3b6081bb4e5a15e6f2a9a9 (plain)
1
2
3
4
5
class RemoveBccRecipientsSetting < ActiveRecord::Migration[6.1]
  def change
    Setting.where(:name => 'bcc_recipients').delete_all
  end
end