Let's see the `Team` model, it's almost identical as before, but with a little change:
```Python hl_lines="8"
-# Code above ommited π
+# Code above omitted π
{!./docs_src/tutorial/many_to_many/tutorial001.py[ln:15-20]!}
</details>
-The **relationship attribute `heroes`** is still a list of heroes, annotatted as `List["Hero"]`. Again, we use `"Hero"` in quotes because we haven't declared that class yet by this point in the code (but as you know, editors and **SQLModel** understand that).
+The **relationship attribute `heroes`** is still a list of heroes, annotated as `List["Hero"]`. Again, we use `"Hero"` in quotes because we haven't declared that class yet by this point in the code (but as you know, editors and **SQLModel** understand that).
We use the same **`Relationship()`** function.
Let's see the other side, here's the `Hero` model:
```Python hl_lines="9"
-# Code above ommited π
+# Code above omitted π
{!./docs_src/tutorial/many_to_many/tutorial001.py[ln:23-29]!}
The same as before, we will have the rest of the code to create the **engine**, and a function to create all the tables `create_db_and_tables()`.
```Python hl_lines="9"
-# Code above ommited π
+# Code above omitted π
{!./docs_src/tutorial/many_to_many/tutorial001.py[ln:32-39]!}
And as in previous examples, we will add that function to a function `main()`, and we will call that `main()` function in the main block:
```Python hl_lines="4"
-# Code above ommited π
+# Code above omitted π
{!./docs_src/tutorial/many_to_many/tutorial001.py[ln:78-79]!}
# We will do more stuff here later π
```console
$ python app.py
-// Boilerplate ommited π
+// Boilerplate omitted π
INFO Engine
CREATE TABLE team (