(cls, metadata)
| 748 | |
| 749 | @classmethod |
| 750 | def define_tables(cls, metadata): |
| 751 | Table("a", metadata, Column("id", Integer, primary_key=True)) |
| 752 | Table( |
| 753 | "b", |
| 754 | metadata, |
| 755 | Column("id", Integer, primary_key=True), |
| 756 | Column("a_id", ForeignKey("a.id"), nullable=False), |
| 757 | ) |
| 758 | |
| 759 | @classmethod |
| 760 | def insert_data(cls, connection): |
nothing calls this directly
no test coverage detected