From: Philip Jenvey Date: Wed, 2 Sep 2009 00:30:44 +0000 (+0000) Subject: add a length for mysql X-Git-Tag: rel_0_6beta1~303 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=601e60e2505b4ef08b72de3403bf770ab521b6a4;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git add a length for mysql --- diff --git a/test/orm/test_naturalpks.py b/test/orm/test_naturalpks.py index 82a2f9e56e..28eb0bf23c 100644 --- a/test/orm/test_naturalpks.py +++ b/test/orm/test_naturalpks.py @@ -375,7 +375,7 @@ class ReversePKsTest(_base.MappedTest): 'user', metadata, Column('code', Integer, primary_key=True), Column('status', Integer, primary_key=True), - Column('username', String, nullable=False), + Column('username', String(50), nullable=False), ) @classmethod