diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-10-15 19:51:03 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-10-15 19:51:03 +0000 |
commit | 222c61d36c1cf0c74ba3482ce118ae6a7b72a21b (patch) | |
tree | d03ba158fa35272b7d658f38fcac8f8dddcabb8b /test/tables.py | |
parent | e932b869fceed46755704cfefc4a00bf614f19ca (diff) | |
download | sqlalchemy-222c61d36c1cf0c74ba3482ce118ae6a7b72a21b.tar.gz |
Diffstat (limited to 'test/tables.py')
-rw-r--r-- | test/tables.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/tables.py b/test/tables.py index 911c90322..6dc1a36cf 100644 --- a/test/tables.py +++ b/test/tables.py @@ -24,6 +24,8 @@ elif DBTYPE == 'sqlite_file': elif DBTYPE == 'postgres': pass +db = testbase.EngineAssert(db) + users = Table('users', db, Column('user_id', Integer, primary_key = True), Column('user_name', String(20)), |