我的UserProfile工作正常,直到我更改了模型和表单。我在模型中添加了一个DateField并更新了我的Forms.py和模板。还做了一个syncdb。
简档/ models.py
class UserProfiles(models.Model):
user = models.OneToOneField(User)
#other fields here
birthday = models.DateField()
简档/ forms.py
class UserProfileForm(ModelForm):
class Meta:
model = UserProfiles
fields = ('some_field', 'birthday', 'otherfields')
简档/ views.py
def editprofile(request):
return render_to_response('profile_edit.html', {'form':UserProfileForm()}, context_instance=RequestContext(request))
这是它正在抛出的错误。
Traceback:
File "C:\Python27\lib\site-packages\django\core\handlers\base.py" in get_response
111. response = callback(request, *callback_args, **callback_kwargs)
File "E:\django-sample\proschools\..\proschools\profile\views.py" in generateprofile
12. userprofile = UserProfiles.objects.get(user=request.user)
File "C:\Python27\lib\site-packages\django\db\models\manager.py" in get
132. return self.get_query_set().get(*args, **kwargs)
File "C:\Python27\lib\site-packages\django\db\models\query.py" in get
344. num = len(clone)
File "C:\Python27\lib\site-packages\django\db\models\query.py" in __len__
82. self._result_cache = list(self.iterator())
File "C:\Python27\lib\site-packages\django\db\models\query.py" in iterator
273. for row in compiler.results_iter():
File "C:\Python27\lib\site-packages\django\db\models\sql\compiler.py" in results_iter
680. for rows in self.execute_sql(MULTI):
File "C:\Python27\lib\site-packages\django\db\models\sql\compiler.py" in execute_sql
735. cursor.execute(sql, params)
File "C:\Python27\lib\site-packages\django\db\backends\util.py" in execute
34. return self.cursor.execute(sql, params)
File "C:\Python27\lib\site-packages\django\db\backends\mysql\base.py" in execute
86. return self.cursor.execute(query, args)
File "C:\Python27\lib\site-packages\MySQLdb\cursors.py" in execute
174. self.errorhandler(self, exc, value)
File "C:\Python27\lib\site-packages\MySQLdb\connections.py" in defaulterrorhandler
36. raise errorclass, errorvalue
Exception Type: OperationalError at /profile/
Exception Value: (1054, "Unknown column 'profile_userprofiles.birthday' in 'field list'")
答案 0 :(得分:2)
如果在添加新列syncdb
之前表格已存在,则不会向其中添加新列! syncdb
does not alter existing tables。请考虑使用Django south或手动添加列。
答案 1 :(得分:2)
http://code.google.com/p/django-evolution/
当您运行./manage.py syncdb时,Django将查找已定义的任何新模型,并添加数据库表来表示这些新模型。但是,如果对现有模型进行更改,。/ manage.py syncdb将不会对数据库进行任何更改。
这是Django Evolution所适用的地方.Django Evolution是Django的扩展,它允许您跟踪模型中的变化,并更新数据库以反映这些变化。
答案 2 :(得分:1)
Syncdb不会自动为您创建新字段。您必须完全删除该表并运行syncdb才能将架构更改应用于数据库。
大多数django开发人员使用名为south的第三方应用来处理这些类型的迁移。 South将允许您添加字段并迁移数据库,而无需重新创建或手动更改数据库。