2a1a38f986
Co-authored-by: Tejaswini Chile <tejaswini@chatwoot.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
13 lines
304 B
Ruby
13 lines
304 B
Ruby
class AddTwoFeaturesToAccounts < ActiveRecord::Migration[6.1]
|
|
def change
|
|
Account.find_in_batches do |account_batch|
|
|
account_batch.each do |account|
|
|
account.enable_features(
|
|
'campaigns',
|
|
'channel_website'
|
|
)
|
|
account.save!
|
|
end
|
|
end
|
|
end
|
|
end
|