The connection string is:
mssql://USER:PASSWORD@HOST/DATABASE
The auth_events table is the build in table of auth. I did not customize it
but I customized auth_user.
auth.settings.extra_fields['auth_user']=[
Field('image', 'upload', default='', autodelete=True,
requires=IS_EMPTY_OR(IS_IMAGE()), uploadfs=upload_fs),
Field('title', 'string', length=50),
Field('show_address', 'boolean'),
Field('address', 'string', length=200),
Field('show_institute', 'boolean'),
Field('institute', 'string', length=200),
Field('show_phone', 'boolean'),
Field('phone', 'integer'),
Field('show_cv', 'boolean'),
Field('cv', 'text'),
Field('training_newsletter', 'boolean'),
Field('accept_terms', 'boolean', requires=IS_EXPR('bool(value) ==
True')),
]
Using sqlite everthing works fine.
--
---
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.