| 46 | |
| 47 | |
| 48 | class Address(Base): |
| 49 | __tablename__ = "address" |
| 50 | |
| 51 | id: Mapped[int] = mapped_column(primary_key=True) |
| 52 | user_id = mapped_column(ForeignKey("user.id")) |
| 53 | email: Mapped[str] |
| 54 | |
| 55 | user: Mapped[User] = relationship(back_populates="addresses") |
| 56 | |
| 57 | |
| 58 | user_table = Table( |
no test coverage detected