diff options
author | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2016-04-21 07:55:22 +0530 |
---|---|---|
committer | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2016-04-21 07:55:22 +0530 |
commit | 218d23622b5fc3d899312ebe45837009661aca07 (patch) | |
tree | 4c73d88bd8759c3a4cfb2be9a4546a709f2d04a4 /activerecord/lib | |
parent | 41a8b8df35d32279ec608e96be4200ed9d51689c (diff) | |
parent | 868a49262c035031550fc65bd297920d0eb274f9 (diff) | |
download | rails-218d23622b5fc3d899312ebe45837009661aca07.tar.gz rails-218d23622b5fc3d899312ebe45837009661aca07.tar.bz2 rails-218d23622b5fc3d899312ebe45837009661aca07.zip |
Merge pull request #24668 from rails/revert-24667-add_doc_for_type_option
Revert "add doc for `:type` option of `#create_join_table` [ci skip]"
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 2 |
1 files changed, 0 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 342b01b3a5..104ca54793 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -317,8 +317,6 @@ module ActiveRecord # [<tt>:force</tt>] # Set to true to drop the table before creating it. # Defaults to false. - # [<tt>:type</tt>] - # The column type of primary key. Defaults to +:integer+. # # Note that #create_join_table does not create any indices by default; you can use # its block form to do so yourself: |