diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-04-29 16:28:11 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-04-29 16:33:01 +0900 |
commit | 0be7f45ae6ec6baa6b21cd9f59963e3422b6d070 (patch) | |
tree | 74216e133af962671ad8e8459b191c0e35833a2e | |
parent | 6003257b73e66df8cd00d4014724df1a31761381 (diff) | |
download | rails-0be7f45ae6ec6baa6b21cd9f59963e3422b6d070.tar.gz rails-0be7f45ae6ec6baa6b21cd9f59963e3422b6d070.tar.bz2 rails-0be7f45ae6ec6baa6b21cd9f59963e3422b6d070.zip |
Restore original merging order to enforce `if_exists: true`
The merging order was accidentally changed at #32447. The original
intention is force `drop_table ... if_exists: true`. #28070.
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 3 |
1 files changed, 1 insertions, 2 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 ac73337aef..54dc917e99 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -305,8 +305,7 @@ module ActiveRecord yield td if block_given? if options[:force] - drop_opts = { if_exists: true }.merge(**options) - drop_table(table_name, drop_opts) + drop_table(table_name, options.merge(if_exists: true)) end result = execute schema_creation.accept td |