异常值:列 home_profile.goal 不存在

Posted

技术标签:

【中文标题】异常值:列 home_profile.goal 不存在【英文标题】:Exception Value: column home_profile.goal does not exist 【发布时间】:2017-11-07 08:18:03 【问题描述】:

我真的被困在这里,我有点困惑为什么会抛出这个错误。我正在运行 Django 1.10,实时数据库是一个 postgresql 数据库。我对postgres不太熟悉。为了灵活性,我一直在使用 sqlite 进行所有开发工作。

我最近在我的模型中添加了两个新字段。他们都是IntegerFields 我在本地没有遇到任何问题。我没有将我的更改部署到我的实时环境中,并且出现了上述错误。

goal = models.IntegerField(default=1, choices=weight_goal, null=True, blank=True)

我已尝试删除字段、删除所有迁移文件,甚至删除模型本身。但是,当我重新添加该字段时,它会引发相同的错误。

我做了一些研究,我看到的只是“删除数据库并重新创建它”。这是不可能的,因为我会丢失实时数据库中的所有数据。

我不太愿意潜入实时数据库并尝试手动添加列。我的意思是,这似乎有点 OTT?

注意:我正在通过 Heroku 部署盒子

个人资料模型:

class Profile(models.Model):
    user = models.OneToOneField(User, on_delete=models.CASCADE)

    image = CloudinaryField('image', default="thumbnail_mqe6ne")
    weight = models.DecimalField(help_text="KG", max_digits=5, default=0, decimal_places=2, validators=[
        MinValueValidator(30),
        MaxValueValidator(600)
        ])
    height = models.DecimalField(help_text="CM", max_digits=8, default=0, decimal_places=2, validators=[
        MinValueValidator(20),
        MaxValueValidator(600),
        ])

    gender_option = (
        ('Male', 'Male'),
        ('Female', 'Female'),
    )

    profile_status = (
        ('Public', 'Public'),
        ('Private', 'Private'),
    )



    birth_date = models.DateField(blank=True, verbose_name="Date of Birth")


    gender = models.CharField(choices=gender_option, max_length=10)
    bio = models.TextField(max_length=300, blank=True)
    location = models.CharField(max_length=30, blank=True)


    weight_goal = (
        (1, 'Weight Loss'),
        (2, 'Weight / Muscle weight gain'),
    )

    goal = models.IntegerField(default=1, choices=weight_goal, null=True, blank=True)

    activity = (
        (1, 'Mostly inactive or sedentary'),
        (2, 'Fairly active'),
        (3, 'Moderately active'),
        (4, 'Active'),
        (5, 'Very active'),
    )


    activity_level = models.IntegerField(default=1, choices=activity, null=True, blank=True)


    intensity = (
        (1, 'Very light training'),
        (2, 'Moderate intensity'),
        (3, 'Moderate to high intensity (1 - 3 hours)'),
        (4, 'Very high intensity training (4+ Hours Daily)'),

    )


    training_intensity = models.IntegerField(default=1, choices=intensity)


    status = models.CharField(default="Public", max_length=10, choices=profile_status)

任何帮助将不胜感激。完整的追溯如下:

Environment:


Request Method: GET
Request URL: /

Django Version: 1.10
Python Version: 2.7.13
Installed Applications:
['djangocms_admin_style',
 'django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.messages',
 'django.contrib.sites',
 'stats',
 'home',
 'blog',
 'haystack',
 'ckeditor_uploader',
 'ckeditor',
 'django_social_share',
 'post_office',
 'sorl.thumbnail',
 'storages',
 'cloudinary',
 'django.contrib.staticfiles',
 'cloudinary_storage',
 'django_cleanup',
 'django_instagram',
 'embed_video',
 'easy_thumbnails',
 'filer',
 'reversion',
 'allauth',
 'allauth.account',
 'allauth.socialaccount',
 'allauth.socialaccount.providers.facebook']
Installed Middleware:
['django.middleware.security.SecurityMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'django.middleware.clickjacking.XFrameOptionsMiddleware',
 'solid_i18n.middleware.SolidLocaleMiddleware',
 'whitenoise.middleware.WhiteNoiseMiddleware',
 'debug_toolbar.middleware.DebugToolbarMiddleware',
 'django.middleware.locale.LocaleMiddleware']



Traceback:

File "/app/.heroku/python/lib/python2.7/site-packages/django/core/handlers/exception.py" in inner
  39.             response = get_response(request)

File "/app/.heroku/python/lib/python2.7/site-packages/django/core/handlers/base.py" in _legacy_get_response
  249.             response = self._get_response(request)

File "/app/.heroku/python/lib/python2.7/site-packages/django/core/handlers/base.py" in _get_response
  187.                 response = self.process_exception_by_middleware(e, request)

File "/app/.heroku/python/lib/python2.7/site-packages/django/core/handlers/base.py" in _get_response
  185.                 response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "/app/.heroku/python/lib/python2.7/site-packages/django/contrib/auth/decorators.py" in _wrapped_view
  23.                 return view_func(request, *args, **kwargs)

File "/app/home/views.py" in get_user_profile
  42.     profile = Profile.objects.get(user=request.user.id)

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/models/manager.py" in manager_method
  85.                 return getattr(self.get_queryset(), name)(*args, **kwargs)

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/models/query.py" in get
  379.         num = len(clone)

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/models/query.py" in __len__
  238.         self._fetch_all()

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/models/query.py" in _fetch_all
  1085.             self._result_cache = list(self.iterator())

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/models/query.py" in __iter__
  54.         results = compiler.execute_sql()

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/models/sql/compiler.py" in execute_sql
  835.             cursor.execute(sql, params)

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/backends/utils.py" in execute
  79.             return super(CursorDebugWrapper, self).execute(sql, params)

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/backends/utils.py" in execute
  64.                 return self.cursor.execute(sql, params)

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/utils.py" in __exit__
  94.                 six.reraise(dj_exc_type, dj_exc_value, traceback)

File "/app/.heroku/python/lib/python2.7/site-packages/django/db/backends/utils.py" in execute
  64.                 return self.cursor.execute(sql, params)

Exception Type: ProgrammingError at /profile/
Exception Value: column home_profile.goal does not exist
LINE 1: ... "home_profile"."bio", "home_profile"."location", "home_prof...
                                                         ^

【问题讨论】:

如果您在本地添加了任何字段,请确保在实时数据库上运行迁移 嘿!是的,我也试过在 heroku 盒子上运行迁移 你能发布你的 home_profile 模型吗?否则检查模型中是否存在目标字段以及实时服务器中是否存在, 我添加了 Profile 模型。我检查了现场,模型文件完全一样。 goal = models.IntegerField(default=1,choices=weight_goal, null=True, blank=True) 将此作为 CharField 然后上传到服务器并首先运行 makemigrations 然后迁移并让我知道 \ 【参考方案1】:

如果您还没有做的话,首先要做的是创建数据库的备份。

数据库是一个 postgresql 数据库。我对postgres不太熟悉。为了灵活性,我一直在使用 sqlite 进行所有开发工作。

对于非平凡的项目,最好两端使用相同的 RDBMS。

我做了一些研究,我所看到的只是“删除数据库并重新创建它”

你不走这条路是对的。这是非常糟糕的建议。

我已尝试删除字段、删除所有迁移文件,甚至删除模型本身。但是,当我重新添加该字段时,它会引发相同的错误。

但这也是一条非常孤独和危险的道路,你已经走上了充满陷阱的道路。让我们看看我们能不能把事情做好。

postgresql 抱怨该列丢失的事实清楚地表明您有一个流氓迁移。浏览您的备份,看看您是否有一个版本的数据库,带有该列。否则,您将丢失一些数据。

如果您有这样的备份,请在之后通过 psql 或 pgadmin 直观地检查数据库上确实缺少该列。

既然您已经清除了迁移,请完全清空该文件夹。确保没有任何.pyc 文件挂起。

接下来检查您的django_migrations 表。删除与当前应用相关的迁移(我认为是home)。

下一步

./manage.py makemigrations home

这应该会在您的迁移文件夹中创建一个迁移。确认后做

./manage.py migrate --fake-initial home

现在一切都应该好了。

【讨论】:

感谢您的详细回复 :) 我一直在玩并备份数据库等。我已经到了删除迁移文件和运行“makemigrations”命令的地步它正常运行并创建了初始文件。但是,当我运行 'migrate --fake-initial home' 时,它只会返回以下内容:要执行的操作:应用所有迁移:主页 正在运行的迁移:没有要应用的迁移。 可能是因为您错过了删除django_migrations 表中的相关条目。此时这并不重要,但下次您需要进行迁移时,它会回来咬 oyu。 好的,我已经删除了 django_migrations 中家庭应用程序的条目。然后运行上面的命令,我得到了同样的错误。 您确定您已经完全按照所有步骤操作了吗? 我想还有一些额外的信息尚未透露。否则这个配方有效(正如你所说,你已经发现它已经在 sqlite 上工作了)。无论如何,如果您有一个工作安装,只需使用 fake 标记迁移已应用,一切都会好起来的。

以上是关于异常值:列 home_profile.goal 不存在的主要内容,如果未能解决你的问题,请参考以下文章

如何获取显示列异常值的行?

异常值去除隔离林

检查 Pandas 数据框的异常值 [重复]

新增表字段时报错异常

用于读取记录数组的 BigQuery Java API:“不支持按名称检索字段值”异常

R语言dplyr包的mutate函数将列添加到dataframe中或者修改现有的数据列:基于条件判断创建布尔型指示变量将异常离散编码转化为NA值