FIX: Can't reset AR schema cache due to versions table.

This commit is contained in:
Guo Xiang Tan 2017-08-17 19:27:35 +09:00
parent eafab41a2c
commit 0e656ff213

View File

@ -447,7 +447,7 @@ module Discourse
def self.reset_active_record_cache
ActiveRecord::Base.connection.query_cache.clear
(ActiveRecord::Base.connection.tables - %w[schema_migrations]).each do |table|
(ActiveRecord::Base.connection.tables - %w[schema_migrations versions]).each do |table|
table.classify.constantize.reset_column_information rescue nil
end
nil