diff options
Diffstat (limited to 'examples/vertical/vertical.py')
-rw-r--r-- | examples/vertical/vertical.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/vertical/vertical.py b/examples/vertical/vertical.py index 720a1934d..e9fff9163 100644 --- a/examples/vertical/vertical.py +++ b/examples/vertical/vertical.py @@ -5,7 +5,7 @@ fields that are all persisted in a normalized fashion.""" from sqlalchemy import * import datetime -e = BoundMetaData('sqlite://', echo=True) +e = MetaData('sqlite://', echo=True) # this table represents Entity objects. each Entity gets a row in this table, # with a primary key and a title. @@ -177,4 +177,4 @@ for entity in entities: for entity in entities: session.delete(entity) -session.flush()
\ No newline at end of file +session.flush() |