Thanks for the quick response.  Here is a snipprt of my db.py

migrate_db = True
if not request.env.web2py_runtime_gae:
    ## if NOT running on Google App Engine use SQLite or other DB
    #db = DAL('sqlite://storage.sqlite')
    db = DAL('postgres://xxxxxxxx', migrate_enabled=migrate_db, 
fake_migrate_all=False) 

and the reference to one of the new tables:

#----------------------jurisdiction_terms-------------------------------
db.define_table('jurisdiction_terms',
    Field('jurisdiction','string'),
    migrate=migrate_db)

But I just cannot get web2py to create the actual table in the database.  
Unfortunately the database is not empty or I wouls simply drop and 
rebuild.  This is quite frustratingm been at it for over an hour and am 
concluding something is corrupt somewhere.  Any ideas?

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to