aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-04-06 17:38:53 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-04-06 17:38:53 -0300
commita956ec964078ee533644fae2a99e68eda0a7c9d5 (patch)
tree839463ce974fe3ad7e8112e41eed2668593a1438 /activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
parentdbb75218b56c7bc3ac8f3b26f0c8ea8e944fb10c (diff)
downloadrails-a956ec964078ee533644fae2a99e68eda0a7c9d5.tar.gz
rails-a956ec964078ee533644fae2a99e68eda0a7c9d5.tar.bz2
rails-a956ec964078ee533644fae2a99e68eda0a7c9d5.zip
No need to document drop_table in the PostgreSQLAdapter
It behaves in the same way that the abstract adapter. [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
index e3385d6e6d..22c9076086 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
@@ -573,6 +573,10 @@ module ActiveRecord
# [<tt>:temporary</tt>]
# Set to +true+ to drop temporary table.
# Defaults to false.
+ #
+ # Although this command ignores most +options+ and the block if one is given,
+ # 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 = {})
execute "DROP#{' TEMPORARY' if options[:temporary]} TABLE#{' IF EXISTS' if options[:if_exists]} #{quote_table_name(table_name)}#{' CASCADE' if options[:force] == :cascade}"
end