diff options
author | Marc Schütz <schuetz@yoocon.de> | 2013-02-20 22:18:06 +0100 |
---|---|---|
committer | Marc Schütz <schuetz@yoocon.de> | 2013-02-20 22:18:06 +0100 |
commit | 743d15bba182df80d003d205690ead988970299c (patch) | |
tree | dc40635a08448801b5bfd616be4aa9cd57b24ff2 /guides/source | |
parent | 8fc6b9b4c8d6b71446b519837c99d51725dcf848 (diff) | |
download | rails-743d15bba182df80d003d205690ead988970299c.tar.gz rails-743d15bba182df80d003d205690ead988970299c.tar.bz2 rails-743d15bba182df80d003d205690ead988970299c.zip |
Add more documentation for create_join_table.
Explain that it doesn't create indices by default and
that it also has a block form.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/migrations.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md index c4fbae8925..d738d847e9 100644 --- a/guides/source/migrations.md +++ b/guides/source/migrations.md @@ -344,6 +344,16 @@ create_join_table :products, :categories, column_options: {null: true} will create the `product_id` and `category_id` with the `:null` option as `true`. +`create_join_table` also accepts a block, which you can use to add indices +(which are not created by default) or additional columns: + +```ruby +create_join_table :products, :categories do |t| + t.index :products + t.index :categories +end +``` + ### Changing Tables A close cousin of `create_table` is `change_table`, used for changing existing |