diff options
| author | Jason Kirtland <jek@discorporate.us> | 2007-07-06 00:58:09 +0000 |
|---|---|---|
| committer | Jason Kirtland <jek@discorporate.us> | 2007-07-06 00:58:09 +0000 |
| commit | 177d30cc011b919c9c6381027d2e5f29e17e5ea7 (patch) | |
| tree | decd2f3e31ebe85540d858f181261b3f93671475 /test/orm/lazytest1.py | |
| parent | 6a30dd13909a10e84ebc09a50a3c0561f5ae803c (diff) | |
| download | sqlalchemy-177d30cc011b919c9c6381027d2e5f29e17e5ea7.tar.gz | |
- Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData instead
- Deprecated BoundMetaData- use MetaData instead
- Removed DMD and BMD from documentation
Diffstat (limited to 'test/orm/lazytest1.py')
| -rw-r--r-- | test/orm/lazytest1.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/lazytest1.py b/test/orm/lazytest1.py index 9f2d53e9d..2cabac3a2 100644 --- a/test/orm/lazytest1.py +++ b/test/orm/lazytest1.py @@ -7,7 +7,7 @@ import datetime class LazyTest(AssertMixin): def setUpAll(self): global info_table, data_table, rel_table, metadata - metadata = BoundMetaData(testbase.db) + metadata = MetaData(testbase.db) info_table = Table('infos', metadata, Column('pk', Integer, primary_key=True), Column('info', String)) |
