3👍
The short answer to your question is – yes, it can. Simply set the managed property to False on the User model.
- [Django]-Django Invalid HTTP_HOST header: 'mydomain'. You may need to add u'mydomain' to ALLOWED_HOSTS
- [Django]-Many-To-One Relation Query in Django
- [Django]-Background process in GAE
- [Django]-Best JSON library to get JSON data for Django?
- [Django]-Access denied to windows certificate store in django application
- [Django]-Why getting this error "django.db.utils.OperationalError: (1050, "Table 'someTable' already exists")"
- [Django]-How to create an object for a model from the console similar to how Django made the createsuperuser command
- [Django]-Django model.foreignKey and return self.text errors
- [Django]-How to configure Mathjax in Python Django
- [Django]-Cannot assign "<SimpleLazyObject: <User: XXX>>": "Comment.user" must be a "MyProfile" instance
0👍
Is there a particular reason you don’t want the table to be created? If you write (or use a pre-existing) LDAP authentication backend, the User objects will be stored in the table, but they won’t have any password information stored, and you can easily update fields like email address and name during the authentication process, so you won’t create a disconnect between information stored in LDAP and managed in the Django table (i.e., you can continue updating auth information from LDAP, and don’t have to worry about also updating it in the Django DB).
- [Django]-How to assign default values to a Django path
- [Django]-Formatting Time Django Template
- [Django]-What happens during AWS Elastic Beanstalk 504 Gateway Timeout
0👍
There’s no way to avoid the table and still have any sort authentication. The “alternative” authentication methods still make use of the auth_user
table, they just authenticate via another means.
- [Django]-Django Create and Save Many instances of model when another object are created
- [Django]-Alternate URL router for Django
- [Django]-How to filter a Django QuerySet's related fields' 'all' or 'none'
- [Django]-What should be the directory structure for a REST API in Django?
- [Django]-Count the number of posts by a user – django