diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index f51dba6..306ff18 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -2718,6 +2718,7 @@ class Table(Queryable): db["dogs"].insert({"id": 1, "name": "Cleo"}, pk="id").m2m( "humans", {"id": 1, "name": "Natalie"}, pk="id" ) + See :ref:`python_api_m2m` for details. - ``other_table`` - the name of the table to insert the new records into.