mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 00:47:46 -06:00
9 lines
211 B
Ruby
9 lines
211 B
Ruby
# frozen_string_literal: true
|
|
|
|
unless Discourse.skip_post_deployment_migrations?
|
|
ActiveRecord::Tasks::DatabaseTasks.migrations_paths << Rails
|
|
.root
|
|
.join(Discourse::DB_POST_MIGRATE_PATH)
|
|
.to_s
|
|
end
|