鉴于这个简单的用户模型:
class User(AbstractUser):
height = models.IntegerField(default=0)
# active= models.CharField(db_column='is_active') ??? How
is_active
是AbstractUser
中的字段,但我想将其称为active
。使用相同的db_column
会出现以下错误:
字段“有效”的列名称为“is_active”,供另一个人使用 领域。提示:为字段指定“db_column”。
如何实现这一目标?