diff options
author | Marc Schütz <schuetz@yoocon.de> | 2013-02-21 08:15:40 +0100 |
---|---|---|
committer | Marc Schütz <schuetz@yoocon.de> | 2013-02-21 08:15:40 +0100 |
commit | 5b5f7a6b5c4b12a341043bfa348173f9732ef383 (patch) | |
tree | d8295c8bed944d552d9ad935745a6bc874006584 /activerecord | |
parent | 743d15bba182df80d003d205690ead988970299c (diff) | |
download | rails-5b5f7a6b5c4b12a341043bfa348173f9732ef383.tar.gz rails-5b5f7a6b5c4b12a341043bfa348173f9732ef383.tar.bz2 rails-5b5f7a6b5c4b12a341043bfa348173f9732ef383.zip |
Indent comment block by two spaces.
As requested by @fxn
https://github.com/schuetzm/rails/commit/743d15bba182df80d003d205690ead988970299c#commitcomment-2661417
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 8 |
1 files changed, 4 insertions, 4 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 b3e28d387e..9bae880024 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -195,10 +195,10 @@ module ActiveRecord # Note that +create_join_table+ does not create any indices by default; you can use # its block form to do so yourself: # - # create_join_table :products, :categories do |t| - # t.index :products - # t.index :categories - # end + # create_join_table :products, :categories do |t| + # t.index :products + # t.index :categories + # end # # ====== Add a backend specific option to the generated SQL (MySQL) # create_join_table(:assemblies, :parts, options: 'ENGINE=InnoDB DEFAULT CHARSET=utf8') |