mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
302e8f4393
That is a problem after upgrade to Rails 6. It was partially fixed here: 025d4ee91f
8 lines
192 B
Ruby
8 lines
192 B
Ruby
# frozen_string_literal: true
|
|
|
|
unless Discourse.skip_post_deployment_migrations?
|
|
ActiveRecord::Migrator.migrations_paths << Rails.root.join(
|
|
Discourse::DB_POST_MIGRATE_PATH
|
|
).to_s
|
|
end
|