FIX: Do not dump schema during production database migrations (#12785)

It's important that we don't perform pg_dumps against databases
running behind pgbouncer.

We had an old monkey-patch to prevent this, but following some [recent
internal rails refactoring](5488686851),
the patch no longer works. Instead, we can use the official
`config.active_record.dump_schema_after_migration` option.

Setting this to false in production is recommended by Rails, and is the
default for newly generated Rails applications.
This commit is contained in:
David Taylor 2021-04-21 16:26:20 +01:00 committed by GitHub
parent e4f1760bab
commit 65164bf189
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

View File

@ -7,7 +7,3 @@
require File.expand_path('../config/application', __FILE__)
Discourse::Application.load_tasks
# this prevents crashes when migrating a database in production in certain
# PostgreSQL configuations when trying to create structure.sql
Rake::Task["db:structure:dump"].clear if Rails.env.production?

View File

@ -67,4 +67,5 @@ Discourse::Application.configure do
config.developer_emails = emails.split(",").map(&:downcase).map(&:strip)
end
config.active_record.dump_schema_after_migration = false
end