Hi, I'm thinking this should work... its done through script. Should I be doing it differently?
thanks,
Mart :)
def deleteRecords():
_tables=['auth_user',
'auth_group',
'auth_membership',
'auth_permisssion',
'auth_event',
'local_user',
'local_history']
for tbl in db.tables:
if not tbl in _tables:
db(db[tbl].id>0).delete()

