DEV: Support post deployment migrations for plugins.

This commit is contained in:
Guo Xiang Tan
2018-10-09 13:11:45 +08:00
parent 8b2a379e4e
commit 1c9b5e75e7
3 changed files with 11 additions and 2 deletions

View File

@ -649,4 +649,8 @@ module Discourse
ENV["DISCOURSE_RUNNING_IN_RACK"] == "1"
end
def self.skip_post_deployment_migrations?
['1', 'true'].include?(ENV["SKIP_POST_DEPLOYMENT_MIGRATIONS"]&.to_s)
end
end