mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-28 03:26:01 -04:00
- fix the col length missing just like in master...
Change-Id: I172999198217b9a09f136664f5a7e38e7e099df6
This commit is contained in:
@@ -533,7 +533,7 @@ class FromSubclassOptionsTest(PathTest, fixtures.DeclarativeMappedTest):
|
||||
__tablename__ = 'basecls'
|
||||
id = Column(Integer, primary_key=True)
|
||||
|
||||
type = Column(String)
|
||||
type = Column(String(30))
|
||||
related_id = Column(ForeignKey('related.id'))
|
||||
related = relationship("Related")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user