~ubuntu-branches/debian/jessie/sqlalchemy/jessie

« back to all changes in this revision

Viewing changes to test/orm/test_composites.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2011-04-14 23:37:40 UTC
  • mfrom: (1.4.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20110414233740-tp3s4rtv1c0giev7
Tags: 0.6.7-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
388
388
        )
389
389
 
390
390
        Table('values', metadata,
391
 
            Column('id', Integer, primary_key=True),
 
391
            Column('id', Integer, primary_key=True,
 
392
                           test_needs_autoincrement=True),
392
393
            Column('description_id', Integer, ForeignKey('descriptions.id'),
393
394
                   nullable=False),
394
395
            Column('v1', String(20)),