diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md index c41114d307..1ea5391779 100644 --- a/guides/source/active_record_migrations.md +++ b/guides/source/active_record_migrations.md @@ -523,7 +523,7 @@ add_belongs_to :taggings, :taggable, polymorphic: true ``` The polymorphic option will create two columns on the taggings table which can -be used for polymorphic assocations: `taggable_type` and `taggable_id`. +be used for polymorphic associations: `taggable_type` and `taggable_id`. A foreign key can be created with the the `foreign_key` option.