(cls, metadata)
| 742 | |
| 743 | @classmethod |
| 744 | def define_tables(cls, metadata): |
| 745 | Table("a", metadata, Column("id", Integer, primary_key=True)) |
| 746 | Table( |
| 747 | "b", |
| 748 | metadata, |
| 749 | Column("id", Integer, primary_key=True), |
| 750 | Column("a_id", ForeignKey("a.id"), nullable=False), |
| 751 | ) |
| 752 | |
| 753 | @classmethod |
| 754 | def insert_data(cls, connection): |
nothing calls this directly
no test coverage detected