| 16 | |
| 17 | |
| 18 | class Item(Base): |
| 19 | __tablename__ = "item" |
| 20 | |
| 21 | id: Mapped[int] = mapped_column(primary_key=True) |
| 22 | |
| 23 | notes: Mapped[Dict[str, "Note"]] = relationship( |
| 24 | collection_class=attribute_keyed_dict("keyword"), |
| 25 | cascade="all, delete-orphan", |
| 26 | ) |
| 27 | |
| 28 | |
| 29 | class Note(Base): |
no test coverage detected