| 11 | |
| 12 | |
| 13 | class Test(Base): |
| 14 | __tablename__ = "test_table_json" |
| 15 | |
| 16 | id = mapped_column(Integer, primary_key=True) |
| 17 | data: Mapped[str] = mapped_column() |
| 18 | |
| 19 | |
| 20 | unique = UniqueConstraint(name="my_constraint") |
nothing calls this directly
no test coverage detected