Django错误:关系"users_user"不存在

Pro*_*eus 20 python django

我在迁移过程中遇到以下错误:

django.db.utils.ProgrammingError:关系"users_user"不存在

  File "/Users/user/Documents/workspace/api/env/lib/python2.7/site-packages/django/db/backends/utils.py", line 79, in execute
    return super(CursorDebugWrapper, self).execute(sql, params)
  File "/Users/user/Documents/workspace/api/env/lib/python2.7/site-packages/django/db/backends/utils.py", line 64, in execute
    return self.cursor.execute(sql, params)
  File "/Users/user/Documents/workspace/api/env/lib/python2.7/site-packages/django/db/utils.py", line 97, in __exit__
    six.reraise(dj_exc_type, dj_exc_value, traceback)
  File "/Users/user/Documents/workspace/api/env/lib/python2.7/site-packages/django/db/backends/utils.py", line 62, in execute
    return self.cursor.execute(sql)
Run Code Online (Sandbox Code Playgroud)

这是我的模特:

from django.db import models
from django.contrib.auth.models import AbstractBaseUser, PermissionsMixin
from ..managers.user import UserManager


class User(AbstractBaseUser, PermissionsMixin):
    # Email identifier, primary key, unique identifier for the user.
    email = models.EmailField(verbose_name='email address', max_length=254, unique=True, db_index=True)
    is_admin = models.BooleanField(default=False)
    is_active = models.BooleanField(default=False)
    objects = UserManager()

    USERNAME_FIELD = 'email'
    REQUIRED_FIELDS = []

    class Meta:
        verbose_name = 'User'
        app_label = "users"

    def __unicode__(self):
        return self.email

    @property
    def get_full_name(self):
        return self.email

    @property
    def get_short_name(self):
        return self.email

    def has_module_perms(self, app_label):
        """
        Does the user have permissions to view the app `app_label`
        """
        # Simplest possible answer: Yes, always
        return True

    @property
    def is_staff(self):
        # Simplest possible answer: All admins are staff
        return self.is_admin
Run Code Online (Sandbox Code Playgroud)

设置:

AUTH_USER_MODEL = 'users.User'
Run Code Online (Sandbox Code Playgroud)

我错过了什么?

tgd*_*gdn 31

在您的用户应用程序中,您应该有一个文件夹migrations.它应该只包含0001_initial.py__init__.py.那是对的吗?

尝试运行./manage.py sqlmigrate user 0001_initial并查看它的作用,因为那是错误的来源

  • 这是我的问题 - 我从未运行过实际的初始用户迁移.你可能没有运行`python manage.py makemigrations appname`yet - 一旦你这样做并且`之后``migrate`,一切都应该没问题. (8认同)