Hi, I run Askbot on the same database of my main app, and I prefer to leave the user creation in one place (the main app).
I've noticed that users created by my main app have an empty status: ''.
Shouldn't that be 'a'?
Try to use the default values.
This is a common problem - how to allow different apps to have their custom user profiles. Django did it one way until version 1.4, now switched to another approach in 1.5.
In askbot we just added fields to auth_user.
IMO - if you are integrating a number of applications into one project, then it's better to have one table for the user profile and maintain it accordingly, which requires some custom database maintenance, otherwise there may be several fields for the same thing like "website", "homepage_url" etc., depending on the app, and then you'd need to synchronize those values.
Maybe something can be improved in askbot code to make maintenance of the user profile table easier.
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2012-10-31 13:50:59 -0500
Seen: 29 times
Last updated: Oct 31 '12
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.