Thoughts, in no particular order: 1. What about your app is dependent on the uid/User? I.e., At what points in the app's use does the uid come into play? 2. Since there is a uid, where is it coming from? UNIX uid? Some other forum id? 3. Are there events in the life of a uid/User (creation, modification, destruction) that you have to respond to (or which are already being responded to on your behalf by the django User model)?
Since you don't want to change your app, maybe you can create your own User model that supplies enough of the same functionality that your app can't tell the difference. This might require creating another model/table, but I think you can create a custom manager that will fake enough stuff to make things work. If you go this route, all you'll need to change is the import of User into your models.py file. Just some thoughts. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---