| 1282 | Base = declarative_base(metadata=metadata) |
| 1283 | |
| 1284 | class Mixin: |
| 1285 | data = Column(MutableList.as_mutable(ARRAY(Integer))) |
| 1286 | |
| 1287 | class Foo(Mixin, Base): |
| 1288 | __tablename__ = class="st">"foo" |
nothing calls this directly
no test coverage detected