Files
Redmine/db/migrate/20210801145548_remove_bcc_recipients_setting.rb

6 lines
143 B
Ruby
Raw Normal View History

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