Django:无法解析相关模型 'users.UserProfile'

Django: Related model 'users.UserProfile' cannot be resolved

我尝试了 运行 makemigrations 并在迁移之后不断收到此错误:

ValueError: Related model 'users.UserProfile' cannot be resolved

我想做的是 Link 一个 UserProfile 模型到 Django 自己的 User 模型:

from django.db import models
from django.contrib.auth.models import User

class UserProfile(models.Model):
    user = models.OneToOneField(User, on_delete=models.CASCADE)
    website = models.URLField(blank=True)
    bio = models.CharField(max_length=250, blank=True)
    full_name = models.CharField(max_length=250, blank=True)

Contests”模型(如您在下面我安装的应用程序中所见)也使用用户模型,没有任何错误。

我的安装的应用程序看起来像这样:

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'users',
    'social.apps.django_app.default',
    'crispy_forms',
    'pages',
    'contests',
]

我的迁移文件0001_initial.py如下:

# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2016-12-30 15:45
from __future__ import unicode_literals

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    initial = True

    dependencies = [
        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
    ]

    operations = [
        migrations.CreateModel(
            name='UserProfile',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('website', models.URLField(blank=True)),
                ('bio', models.CharField(blank=True, max_length=250)),
                ('full_name', models.CharField(blank=True, max_length=250)),
                ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
            ],
        ),
    ]

其他说明:

  1. 我使用多个设置文件,但我安装的应用程序都在我的基本设置文件中,所以这应该不是问题。

  2. 我正在使用 Python Social Auth 创建管道并创建 UserProfile。 (但这应该不会对数据库中模型的创建有任何影响)

  3. 我什至删除了数据库并重新创建了它,但我仍然遇到同样的错误。

提前致谢!!! :)

我已经从其他应用程序中删除了所有迁移文件并运行 makemigrations 并再次迁移。

现在一切正常。

我在创建自定义用户模型时遇到了类似的问题(如第一次迁移前的文档中所写)。

class User(AbstractUser):
    pass

AUTH_USER_MODEL = 'account.user'

尝试将我 运行 迁移到 "ValueError: Related model 'account.user' cannot be resolved" 时。

在我第一次为新的自定义用户模型生成迁移后问题得到解决。

保罗

尝试 运行 为每个模型逐一迁移。

通过这种方式,您可以调试 app 您遇到的

问题
python manage.py migrate appmname

也许 运行 一项一项的迁移可能会有帮助