- add a type here so that to account for pre-0.9 FK/type support

This commit is contained in:
Mike Bayer 2014-11-09 12:40:35 -05:00
parent 8e8a6bb71a
commit a9c58f1ca6
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class BatchApplyTest(TestBase):
t = Table(
'tname', m,
Column('id', Integer, primary_key=True),
Column('parent_id', ForeignKey('tname.id')),
Column('parent_id', Integer, ForeignKey('tname.id')),
Column('data', String)
)
return ApplyBatchImpl(t, table_args, table_kwargs)