From fa62a0af2706475ff3bef246fc02b2968cb4c03c Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 15 Jun 2017 18:47:33 -0400 Subject: [PATCH] - fix the col length missing just like in master... Change-Id: I172999198217b9a09f136664f5a7e38e7e099df6 --- test/orm/test_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/orm/test_options.py b/test/orm/test_options.py index 737f3cd6f3..8b998c1905 100644 --- a/test/orm/test_options.py +++ b/test/orm/test_options.py @@ -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") -- 2.47.2