I have an application that contains only model files:

db_model
the databases folder contains the .table files
models contains the _db.py files


Furthermore I have 2 applications:

init
cms
the databases folder of both applications is empty
models containsthe  _db.py with the connection string set to:

db = DAL('postgres://leonexus:n#N48str@localhost:5432/leonexus', 
lazy_tables=True, migrate_enabled=False, pool_size=1, 
check_reserved=['all'])

and auth define_tables set to:

auth.define_tables(migrate=False, username=True, signature=False)


When I expose:

http://127.0.0.1:8000/cms/default/user/login

I get the following error:

column auth_user.first)name does not exist


Does that mean the way I distributed my models, views and controllers over 
different applications is not possible?


Kind regards,

Annet


-- 

--- 
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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to