Skip to content

Commit

Permalink
Streamline wording and remove link that could rot.
Browse files Browse the repository at this point in the history
Refs #7939
  • Loading branch information
markstory committed Oct 26, 2024
1 parent 1d7dfe7 commit be95c0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion en/orm/associations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,8 @@ example above we would need tables for ``articles``, ``tags`` and
``articles_tags``. The ``articles_tags`` table contains the data that links
tags and articles together. The joining table is named after the two tables
involved, separated with an underscore by convention. In its simplest form, this
table consists of ``article_id`` and ``tag_id``, as well as `multiple-column ``PRIMARY KEY`` index <https://dev.mysql.com/doc/refman/8.4/en/create-table.html#idm44961976278224>`_ spanning both of these columns.
table consists of ``article_id`` and ``tag_id`` and a multi-column
``PRIMARY KEY`` index spanning both columns.

**belongsToMany** requires a separate join table that includes both *model*
names.
Expand Down

0 comments on commit be95c0a

Please sign in to comment.