6

嗨,我正在使用 sqlite3 数据库开发 django python 应用程序。我对在我的 models.py 中定义的 django 用户模型进行了扩展,如下所示:

#Account Model
class Account(models.Model):
  user = models.OneToOneField(User)
  avatar_url = models.CharField(max_length=200)
  profile_url = models.CharField(max_length=200)
  account_type = models.CharField(max_length=60, choices=choices.ACCOUNT_TYPE)

我也有一个方法来创建Account objectpost_save定义这样的处理程序:

#Function to Create user Account/Profile
def create_user_account(sender, instance, created, **kwargs):
  if created:
    models.Account.objects.create(user=instance)

#Create User / User Registration
def UserRegistration(request):
  if request.method == 'POST':
    username = request.POST['fn'].capitalize() + ' ' + request.POST['ln'].capitalize()
    # CREATE USER
    newuser = User.objects.create_user(username=username,
                                       email=request.POST['email'],
                                       password=request.POST['pw'])
    newuser.save()
  return HttpResponse(username)

#Post Save handler to create user Account/Profile
post_save.connect(create_user_account, sender=User)

现在,每当我尝试注册新用户时,都会收到以下数据库错误:

DatabaseError at /register/

table engine_account has no column named user_id

Request Method:     POST
Request URL:    http://localhost:8000/register/
Django Version:     1.4
Exception Type:     DatabaseError
Exception Value:    

table engine_account has no column named user_id

Exception Location:     /usr/local/lib/python2.7/dist-packages/Django-1.4-py2.7.egg/django/db/backends/sqlite3/base.py in execute, line 337
Python Executable:  /usr/bin/python
Python Version:     2.7.3

我不知道那个"user_id"领域是从哪里来的..有什么想法吗?

PS:

表 engine_account 基本上是Account应用程序中名为的类Engine

4

3 回答 3

10

你在运行 syncdb 后编辑了 models.py 吗?

如果是这样,那么您应该手动编辑您的表或使用以下方法重新创建您的数据库:

python manage.py syncdb

在项目目录中应用更改。


2019 年更新:syncdb在 Django 1.9 及以后版本中已弃用。利用

python manage.py makemigrations <app_name>
python manage.py migrate --run-syncdb

2020 年更新:我想在我的答案中添加更多描述。

如果模型和对应的表不匹配,就会出现这个问题。这意味着您已更改模型但未迁移更改。有些人不明白makemigrationsmigrate命令之间的区别。为了更清楚,我将尝试解释其中的区别:

./manage.py makgemigrations <app_name>:给定应用程序模型的更改将与以前的迁移进行比较。如果没有app_name提供,所有跟踪的应用程序都将受到控制,如果有任何更改,则将创建迁移。每个应用程序都有其迁移目录,此命令将在此目录中创建相关的迁移。创建迁移时,它对数据库没有任何更改,需要应用迁移。如果您不应用迁移,那么您仍然会收到相同的错误。

./manage.py migrate:命令创建的迁移makemigrations应用于数据库。在生产环境中迁移时需要小心。

./manage.py showmigrations:此命令列出迁移的状态,您可以查看是否应用了迁移。通常状态存储在数据库中,但不需要连接到数据库并爬取数据。此命令为您提供清晰的输入。

于 2012-06-24T08:00:39.390 回答
9

syncdb在 django 1.9 及更高版本中已弃用。所以对于 django 版本 1.9 或更高版本运行python manage.py makemigrations <app-name>然后python manage.py migrate

于 2017-04-06T07:58:07.737 回答
3

我试过 python manage.py syncdb了,这还不够,所以解决方案是:

我删除了 migrations file,我删除了 db.sqlite3文件,

python manage.py makemigrations也 执行了python manage.py migrate

答对了 !

于 2021-06-06T11:43:12.203 回答