From 232428f8975a94f5b50d67b5b2924ce65ab2ce84 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Thu, 27 Mar 2025 00:27:04 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Settings:=20=EC=9E=84=EC=8B=9C?= =?UTF-8?q?=20user=20model=20=EA=B5=AC=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- users/models.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/users/models.py b/users/models.py index 71a8362..64be935 100644 --- a/users/models.py +++ b/users/models.py @@ -1,3 +1,6 @@ from django.db import models -# Create your models here. +from django.contrib.auth.models import AbstractBaseUser, BaseUserManager, PermissionsMixin + +class User(AbstractBaseUser): + pass \ No newline at end of file