chore: Enable help center for self-hosted accounts (#5458)

This commit is contained in:
Sojan Jose 2022-09-20 08:09:41 +05:30 committed by GitHub
parent 6b80afaf50
commit 3b7cae19e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View 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

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2022_09_19_225556) do
ActiveRecord::Schema.define(version: 2022_09_20_014549) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_stat_statements"