aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-06-11 19:57:38 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-06-13 13:15:50 +0900
commit5cab344494c340ea82a35b46efa06b94f0b7730b (patch)
treeec5e8e67eeff1693a8bf2a3395bceea397894e27 /activerecord/lib/active_record/connection_adapters/abstract
parent0ad238f4782375ea2d3e0145c74be1d1aa8f546f (diff)
downloadrails-5cab344494c340ea82a35b46efa06b94f0b7730b.tar.gz
rails-5cab344494c340ea82a35b46efa06b94f0b7730b.tar.bz2
rails-5cab344494c340ea82a35b46efa06b94f0b7730b.zip
Clear schema cache when a table is created/dropped/renamed
Otherwise `Model.table_exists?` returns the staled cache result.
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
index cf57af5473..c85ea8e1da 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
@@ -310,6 +310,8 @@ module ActiveRecord
if force
drop_table(table_name, force: force, if_exists: true)
+ else
+ schema_cache.clear_data_source_cache!(table_name.to_s)
end
result = execute schema_creation.accept td
@@ -499,6 +501,7 @@ module ActiveRecord
# it can be helpful to provide these in a migration's +change+ method so it can be reverted.
# In that case, +options+ and the block will be used by #create_table.
def drop_table(table_name, options = {})
+ schema_cache.clear_data_source_cache!(table_name.to_s)
execute "DROP TABLE#{' IF EXISTS' if options[:if_exists]} #{quote_table_name(table_name)}"
end