Chatwoot/db/migrate/20221029202300_add_two_features_to_accounts.rb
smartdev58 2a1a38f986
chore: Add feature flags for campaigns and website channel (#5778)
Co-authored-by: Tejaswini Chile <tejaswini@chatwoot.com>
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2022-12-14 16:06:26 -08:00

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