I was attempting to completely separate my auth db from my data db and realized this isn't currently possible but potentially could be:
db = DAL('...')
authdb = DAL('...')
auth = Auth(globals(), authdb)
db.define_table('poll',Field('author',auth.settings.table_user))
Two questions:
Is this a crazy idea?
Could the DAL be modified to handle this?

