自动生成的字段“ user_ptr”与同名的声明字段发生冲突 [英] Auto-generated field 'user_ptr' clashes with declared field of the same name

查看:135
本文介绍了自动生成的字段“ user_ptr”与同名的声明字段发生冲突的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个具有CustomUser的Django应用。我的模型类似于

I have a Django app that has CustomUser. My model looks something like

class CustomUser(AbstractBaseUser):
    def get_short_name(self):
        pass

    def get_full_name(self):
        pass

    firstName = models.CharField(max_length=300)
    middleName = models.CharField(max_length=300, blank=True)
    lastName = models.CharField(max_length=300, blank=True)
    username = models.CharField(unique=True, max_length=50)
    businessName = models.CharField(max_length=500, default=None)
    mobileNumber = models.CharField(max_length=20)
    contactNumber = models.CharField(max_length=20)
    addressLine1 = models.CharField(max_length=300)
    addressLine2 = models.CharField(max_length=300)
    city = models.CharField(max_length=300)
    state = models.CharField(max_length=300)
    role = models.CharField(max_length=20)
    email_id = models.CharField(max_length=300, unique=True)
    aadharNumber = models.BigIntegerField(default=0)
    panNumber = models.CharField(max_length=20, default=None)
    registrationDate = models.BigIntegerField(default=0)
    bankDetail = models.ManyToManyField('BankDetail', related_name="bankDetail")
    dateCreated = models.DateTimeField(auto_now_add=True)
    dateModified = models.DateTimeField(auto_now=True)
    objects = AccountManager()

    USERNAME_FIELD = 'email_id'
    REQUIRED_FIELDS = ['username'] 

我在遵循以下示例在此博客中 https://afropolymath.svbtle.com/authentication-using-django -rest-framework 来实现用户身份验证。

I was following the example in this blog https://afropolymath.svbtle.com/authentication-using-django-rest-framework to implement User authentication.

运行 makemigrations
时出现以下错误我确实查看了StackOverflow上的一些解决方案,但这些解决方案似乎无法解决我的问题。

I get the following error when I run makemigrations I did look at a few solutions on StackOverflow but those don't seem to solve my problem.

Django错误消息在定义中添加一个related_name参数

自动生成的_ptr的AlterField迁移中的字段导致FieldError

Traceback (most recent call last):
  File "manage.py", line 22, in <module>
    execute_from_command_line(sys.argv)
  File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 364, in execute_from_command_line
    utility.execute()
  File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 356, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 283, in run_from_argv
    self.execute(*args, **cmd_options)
  File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 330, in execute
    output = self.handle(*args, **options)
  File "/usr/local/lib/python3.6/site-packages/django/core/management/commands/makemigrations.py", line 177, in handle
    migration_name=self.migration_name,
  File "/usr/local/lib/python3.6/site-packages/django/db/migrations/autodetector.py", line 47, in changes
    changes = self._detect_changes(convert_apps, graph)
  File "/usr/local/lib/python3.6/site-packages/django/db/migrations/autodetector.py", line 133, in _detect_changes
    self.old_apps = self.from_state.concrete_apps
  File "/usr/local/lib/python3.6/site-packages/django/db/migrations/state.py", line 222, in concrete_apps
    self.apps = StateApps(self.real_apps, self.models, ignore_swappable=True)
  File "/usr/local/lib/python3.6/site-packages/django/db/migrations/state.py", line 288, in __init__
    self.render_multiple(list(models.values()) + self.real_models)
  File "/usr/local/lib/python3.6/site-packages/django/db/migrations/state.py", line 323, in render_multiple
    model.render(self)
  File "/usr/local/lib/python3.6/site-packages/django/db/migrations/state.py", line 626, in render
    body,
  File "/usr/local/lib/python3.6/site-packages/django/db/models/base.py", line 259, in __new__
    base.__name__,
django.core.exceptions.FieldError: Auto-generated field 'user_ptr' in class 'CustomUser' for parent_link to base class 'User' clashes with declared field of the same name.
customer ID<django.db.models.fields.related_descriptors.ForwardManyToOneDescriptor object at 0x106341a58>

我该怎么办才能消除此错误并继续成功迁移?

What do I need to do to get rid of this error and proceed with a successful migration?

推荐答案

删除迁移。
然后运行makemigrations命令。

这篇关于自动生成的字段“ user_ptr”与同名的声明字段发生冲突的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆