Changes between Initial Version and Version 1 of Ticket #24524, comment 7


Ignore:
Timestamp:
Mar 23, 2015, 5:51:11 PM (9 years ago)
Author:
SimonSteinberger

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24524, comment 7

    initial v1  
    11Well, I've digged into this myself now, and I must say: This is completely nonsensical:
    22
    3 When using the AbstractUser class to create a custom user model *exactly as outlined in Django's docs* at least the first "manage.py migrate" must work and must create an empty database table layout. The sole purpose of the AbstractUser class is to extend the basic user with more fields. But as you describe it, the whole class is just useless and doomed to fail. By teh way: Permissions and auth group tables are automatically created with the AbstractUser model.
     3When using the AbstractUser class to create a custom user model *exactly as outlined in Django's docs* at least the first "manage.py migrate" must work and must create an empty database table layout. The sole purpose of the AbstractUser class is to extend the basic user with more fields. But as you describe it, the whole class is just useless and doomed to fail. By the way: Permissions and auth group tables are automatically created with the AbstractUser model.
    44
    55So, either I'm doing something plainly wrong here, or the docs are lacking some critical information/solutions, or the whole construct doesn't male sense as it is.
Back to Top