diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
a
|
b
|
|
914 | 914 | ~~~~~~~~~~~~~~~~~~~~~~~ |
915 | 915 | |
916 | 916 | Behind the scenes, Django creates an intermediary join table to represent the |
917 | | many-to-many relationship. By default, this table name is generated using the |
918 | | names of the two tables being joined. Since some databases don't support table |
919 | | names above a certain length, these table names will be automatically |
920 | | truncated to 64 characters and a uniqueness hash will be used. This means you |
921 | | might see table names like ``author_books_9cdf4``; this is perfectly normal. |
922 | | You can manually provide the name of the join table using the |
| 917 | many-to-many relationship. By default, this table name is generated using both |
| 918 | the names of the many-to-many field and the model that contains it. Since some |
| 919 | databases don't support table names above a certain length, these table names |
| 920 | will be automatically truncated to 64 characters and a uniqueness hash will be |
| 921 | used. This means you might see table names like ``author_books_9cdf4``; this is |
| 922 | perfectly normal. You can manually provide the name of the join table using the |
923 | 923 | :attr:`~ManyToManyField.db_table` option. |
924 | 924 | |
925 | 925 | .. _manytomany-arguments: |