| 1049 | Base = cls.DeclarativeBasic |
| 1050 | |
| 1051 | class User(Base): |
| 1052 | __tablename__ = "users" |
| 1053 | id = Column(Integer, Identity(), primary_key=True) |
| 1054 | name = Column(String(255), nullable=False) |
| 1055 | |
| 1056 | def test_issue_6793(self): |
| 1057 | User = self.classes.User |