DatabaseError“没有这样的列”

时间:2012-02-02 06:26:35

标签: django django-models django-south

出于某种原因,我得到DatabaseError "no such column: myapp_customer.redirect_link_id"。在另一台计算机上与我具有完全相同代码的人没有此问题。我们使用Django-South进行迁移,根据它我完全了解模型:

$ python manage.py schemamigration myapp --auto
Nothing seems to have changed.

$ python manage.py migrate myapp
Running migrations for myapp:
- Nothing to migrate.
 - Loading initial data for myapp.
No fixtures found.

这是一个完整的堆栈跟踪:

Traceback:
File "/Library/Python/2.7/site-packages/django/core/handlers/base.py" in get_response
  111.                         response = callback(request, *callback_args, **callback_kwargs)
File "/Users/me/sources/django_myapp/../django_myapp/myapp/views.py" in main_page
  66.         customer = Customer.objects.select_related().get(user = request.user)
File "/Library/Python/2.7/site-packages/django/db/models/query.py" in get
  344.         num = len(clone)
File "/Library/Python/2.7/site-packages/django/db/models/query.py" in __len__
  82.                 self._result_cache = list(self.iterator())
File "/Library/Python/2.7/site-packages/django/db/models/query.py" in iterator
  273.         for row in compiler.results_iter():
File "/Library/Python/2.7/site-packages/django/db/models/sql/compiler.py" in results_iter
  680.         for rows in self.execute_sql(MULTI):
File "/Library/Python/2.7/site-packages/django/db/models/sql/compiler.py" in execute_sql
  735.         cursor.execute(sql, params)
File "/Library/Python/2.7/site-packages/django/db/backends/util.py" in execute
  34.             return self.cursor.execute(sql, params)
File "/Library/Python/2.7/site-packages/django/db/backends/sqlite3/base.py" in execute
  234.             return Database.Cursor.execute(self, query, params)

Exception Type: DatabaseError at /
Exception Value: no such column: myapp_customer.redirect_link_id

我运行manage.py sqlall myapp并根据它,redirect_link_id出现在db中:

CREATE TABLE "myapp_customer" (
    "id" integer NOT NULL PRIMARY KEY,
    "user_id" integer NOT NULL UNIQUE REFERENCES "auth_user" ("id"),
    "client_key" varchar(9) NOT NULL UNIQUE,
    "api_key" varchar(30) NOT NULL UNIQUE,
    "redirect_link_id" integer REFERENCES "myapp_full_link" ("id"),
    "message_title" varchar(200),
    "message_body" text,
    "customer_group_id" integer NOT NULL REFERENCES "myapp_customer_group" ("id")
)
;

1 个答案:

答案 0 :(得分:0)

您确定从myapp / migrations目录中获得了最新的迁移文件吗?