| 28 | |
| 29 | |
| 30 | class A(Base): |
| 31 | __tablename__ = "a" |
| 32 | |
| 33 | id: Mapped[int] = mapped_column(primary_key=True) |
| 34 | data: Mapped[Optional[str]] |
| 35 | create_date: Mapped[datetime.datetime] = mapped_column( |
| 36 | server_default=func.now() |
| 37 | ) |
| 38 | bs: Mapped[List[B]] = relationship() |
| 39 | |
| 40 | |
| 41 | class B(Base): |
no test coverage detected