I think you need to read in the book about migrate and fake_migrate. You cannot use a table that you have not defined, you need to migrate(=True) it field.
As I said. Remove you db. Make a blank one again. remove any migrate or fake_migrate option from your code. def index(): return auth.wiki() should work. Massimo On Tuesday, 9 October 2012 15:43:06 UTC-5, Bill Thayer wrote: > > > Here's my saga then... > > I took the welcome app, added my oracle connection string and edited > > > ## create all tables needed by auth if not custom tables > auth.define_tables(username=True, signature=True, migrate=False) > > > > > --

