mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-05 15:23:48 -04:00
fix datatypes #2
This commit is contained in:
@@ -89,7 +89,7 @@ class PolymorphicSynonymTest(ORMTest):
|
||||
Column('info', Text))
|
||||
t2 = Table('t2', metadata,
|
||||
Column('id', Integer, ForeignKey('t1.id'), primary_key=True),
|
||||
Column('data', Integer, nullable=False))
|
||||
Column('data', String(10), nullable=False))
|
||||
|
||||
def test_polymorphic_synonym(self):
|
||||
class T1(fixtures.Base):
|
||||
|
||||
Reference in New Issue
Block a user