Files
Redmine/db/migrate/20210801145548_remove_bcc_recipients_setting.rb
2021-08-01 17:25:13 +00:00

6 lines
143 B
Ruby

class RemoveBccRecipientsSetting < ActiveRecord::Migration[6.1]
def change
Setting.where(:name => 'bcc_recipients').delete_all
end
end