chore: Enable help center for self-hosted accounts (#5458)
This commit is contained in:
12
db/migrate/20220920014549_enable_help_center.rb
Normal file
12
db/migrate/20220920014549_enable_help_center.rb
Normal file
@@ -0,0 +1,12 @@
|
||||
class EnableHelpCenter < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
return if ENV['DEPLOYMENT_ENV'] == 'cloud'
|
||||
|
||||
Account.find_in_batches do |account_batch|
|
||||
account_batch.each do |account|
|
||||
account.enable_features('help_center')
|
||||
account.save!
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user