| 242 | |
| 243 | # Add table |
| 244 | class AlembicSecond(ModelBase): |
| 245 | a: Mapped[int] = mapped_column(default=42) |
| 246 | b: Mapped[float] = mapped_column(default=4.2) |
| 247 | |
| 248 | assert migrate(autogenerate=True) |
| 249 | assert len(list(versions.glob("*.py"))) == 4 |
no outgoing calls