2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

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