mirror of
https://github.com/redmine/redmine.git
synced 2025-11-04 20:35:57 +01:00
6 lines
143 B
Ruby
6 lines
143 B
Ruby
|
|
class RemoveBccRecipientsSetting < ActiveRecord::Migration[6.1]
|
||
|
|
def change
|
||
|
|
Setting.where(:name => 'bcc_recipients').delete_all
|
||
|
|
end
|
||
|
|
end
|