aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb')
-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 d1e6dcf025..09d0a80ff2 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
@@ -43,6 +43,9 @@ module ActiveRecord
# Any extra options you want appended to the table definition.
# [<tt>:temporary</tt>]
# Make a temporary table.
+ # [<tt>:force</tt>]
+ # Set to true or false to drop the table before creating it.
+ # Defaults to false.
#
# ===== Examples
# ====== Add a backend specific option to the generated SQL (MySQL)