mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-28 11:35:19 -04:00
- ensure String has a length for mysql compatibility
Change-Id: Iaa1077ca5929bdc67300cc6bfb1ba98aff382246
This commit is contained in:
@@ -588,7 +588,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