我在 Windows Vista 上使用 Python 2.7 在 Django 1.5 中编程。我正在尝试创建用户配置文件。但是,当我访问 localhost:8000/admin/home/userprofile 时,我得到了1146, "Table 'demo.home_userprofile' doesn't exist
错误。现在我有settings.py
:
AUTH_PROFILE_MODULE = 'home.userProfile'
在 中models.py
,我有定义值
from django.db import models
from django.contrib.auth.models import User
class userProfile(models.Model):
user = models.OneToOneField(User)
photo = models.ImageField(upload_to = url)
telefono = models.CharField(max_length = 30)
def url(self, filename):
ruta = "MultimediaData/Users/$s/%s"%(self.user.username, filename)
return ruta
def __unicode__(self):
return self.user.username
并在admin.py
:
from django.contrib import admin
from demo.apps.home.models import userProfile
admin.site.register(userProfile)
我已经考虑了一段时间了。似乎有什么问题?