[Django] Solution for 'Error: AUTH_USER_MODEL refers to model 'users.User' that has not been installed'
Token 만들기를 하는 중이다. 아래 사이트에서 Customizing authentication 을 복사해서 붙여넣었다. https://docs.djangoproject.com/en/4.2/topics/auth/customizing/ Django The web framework for perfectionists with deadlines. docs.djangoproject.com 복사하여 Myuser 부분만 약간 수정함. #models.py from django.db import models from django.contrib.auth.models import BaseUserManager, AbstractBaseUser class UserManager(BaseUserManager): def create..
2023.09.21