Django 'No such table:" 对于自定义用户配置文件,为什么?
Django 'No such table:" for custom user profile, why?
我正在焦急地想弄清楚为什么我的自定义用户配置文件视图不再有效。我正在使用 django-allauth,并通过为用户创建一个具有一对一字段的模型来自定义我的用户配置文件。但是,我的观点是抛出错误:
OperationalError at /profile/
no such table: user_profile
Request Method: GET
Request URL: http://localhost:8000/profile/
Django Version: 1.7.4
Exception Type: OperationalError
Exception Value:
no such table: user_profile
Exception Location: /usr/local/lib/python2.7/dist-packages/django/db/backends/sqlite3/base.py in execute, line 485
Python Executable: /usr/bin/python
Python Version: 2.7.6
我的 models.py 自定义用户配置文件如下所示:
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.db import models
from allauth.account.models import EmailAddress
class UserProfile(models.Model):
user = models.OneToOneField(User, related_name='profile')
# user visible settings
stop_reminders = models.BooleanField ( default=False,
help_text = 'Flag if user wants reminders not to be sent.' )
stop_all_email = models.BooleanField ( default=False,
help_text = 'Flag if user wants no email to be sent.' )
# hidden settings
is_premium = models.BooleanField ( default=False,
help_text = 'Flag if user has the premium service.' )
def __unicode__(self):
return "{}'s profile".format(self.user.username)
class Meta:
db_table = 'user_profile'
def account_verified(self):
if self.user.is_authenticated:
result = EmailAddress.objects.filter(email=self.user.email)
if len(result):
return result[0].verified
return False
#User.profile = property(lambda u: UserProfile.objects.get_or_create(user=u)[0])
def create_user_profile(sender, instance, created, **kwargs):
if created:
profile, created = UserProfile.objects.get_or_create(user=instance)
post_save.connect(create_user_profile, sender=User)
我的视图是设置用户个人资料设置的地方,如下所示:
@login_required
def user_settings (request):
"""
User settings view, handles changing of user settings and
entry distribution (eventually)
"""
if request.method == 'POST': # If the form has been submitted...
form = UserProfileForm(request.POST, instance=request.user.profile) # A form bound to the POST data
if form.is_valid(): # All validation rules pass
form.save ()
return render_to_response('sm/profile_update_success.html',
{},
context_instance=RequestContext(request))
else:
# create unbound form with initial values generated
# from the user's profile
form = UserProfileForm (instance=request.user.profile)
return render ( request, 'profile.html', { 'form': form, } )
直到最近它都运行良好,我不确定是什么改变让它停止了。谁能解释一下?
我正在使用 Django-1.7.4 和 django-allauth-0.19.1。对于调试,我使用的是 sqllite,我尝试使用 python manage.py migrate
和 python manage.py syncdb
创建它。
首先,如果它以前有效,我无法解释为什么它不再有效。
您应该检查 sqlite 文件本身,看看 table 是否存在。 (该文件通常在根目录下找到 db.sqlite3
,可以用任何标准的 sqlite 浏览器打开)
您提到您已经运行迁移,但实际的迁移已经到位了吗?
运行 python manage.py makemigrations
如果你还没有,请先。如果需要,验证迁移文件本身。
还有 python manage.py inspectdb
命令可以让您深入了解您正在使用的模型。
如果还是不行,当然可以从头开始。我可能在某处错过了捷径,但我会:
- 创建一份您确实需要保留的数据副本
(
python manage.py dumpdata --indent=4 <appname>
)(保存到灯具中)
- 删除迁移文件
- 删除
db.sqlite3
- 运行
python manage.py makemigrations
- 运行
python manage.py migrate
- 使用
python manage.py loaddata <fixture-name>
重新加载旧数据
啊,答案是我从 INSTALLED_APPS
中注释掉了我的主要应用程序的条目。这很愚蠢。
我遇到了同样的问题,但对我来说解决方案不同。我在清理时不小心删除了迁移目录中的 init.py,这意味着某些迁移不会 运行 产生相同的错误。更换它解决了问题。
我遇到了同样的问题。为了修复它,我通过 Control+C 退出了服务器。比通过 运行ning 这两个命令迁移:$ python manage.py makemigrations
它告诉我
'profiles' 的迁移:
profiles/migrations/0001_initial.py
- Create model profile
比我运行$ python manage.py migrate
它告诉我
Operations to perform: Apply all migrations: admin, auth,
contenttypes, profiles, sessions Running migrations:
Applying profiles.0001_initial... OK
现在我再次运行服务器$pythonmanage.py运行服务器
当我创建配置文件时它显示
[24/Aug/2018 19:36:16] "GET /admin/profiles/profile/add/ HTTP/1.1" 200
4381
[24/Aug/2018 19:36:19] "POST /admin/profiles/profile/add/ HTTP/1.1"
302 0
[24/Aug/2018 19:36:19] "GET /admin/profiles/profile/ HTTP/1.1" 200
4376
[24/Aug/2018 19:36:19] "GET /admin/jsi18n/ HTTP/1.1" 200 3217
[24/Aug/2018 19:36:19] "GET /static/admin/css/changelists.css
HTTP/1.1" 200 6170
[24/Aug/2018 19:36:19] "GET /static/admin/img/tooltag-add.svg
HTTP/1.1" 200 331
[24/Aug/2018 19:36:19] "GET /static/admin/img/icon-yes.svg HTTP/1.1"
200 436
配置文件已创建。希望有所帮助。
好的,看来您忘记了 运行 迁移命令;继续 运行 以下命令;在 Django shell:
$ python manage.py migrate
然后,
$ python manage.py makemigrations
$ python manage.py 迁移 --run-syncdb
这就是尝试的好方法
我正在焦急地想弄清楚为什么我的自定义用户配置文件视图不再有效。我正在使用 django-allauth,并通过为用户创建一个具有一对一字段的模型来自定义我的用户配置文件。但是,我的观点是抛出错误:
OperationalError at /profile/
no such table: user_profile
Request Method: GET
Request URL: http://localhost:8000/profile/
Django Version: 1.7.4
Exception Type: OperationalError
Exception Value:
no such table: user_profile
Exception Location: /usr/local/lib/python2.7/dist-packages/django/db/backends/sqlite3/base.py in execute, line 485
Python Executable: /usr/bin/python
Python Version: 2.7.6
我的 models.py 自定义用户配置文件如下所示:
from django.contrib.auth.models import User
from django.db.models.signals import post_save
from django.db import models
from allauth.account.models import EmailAddress
class UserProfile(models.Model):
user = models.OneToOneField(User, related_name='profile')
# user visible settings
stop_reminders = models.BooleanField ( default=False,
help_text = 'Flag if user wants reminders not to be sent.' )
stop_all_email = models.BooleanField ( default=False,
help_text = 'Flag if user wants no email to be sent.' )
# hidden settings
is_premium = models.BooleanField ( default=False,
help_text = 'Flag if user has the premium service.' )
def __unicode__(self):
return "{}'s profile".format(self.user.username)
class Meta:
db_table = 'user_profile'
def account_verified(self):
if self.user.is_authenticated:
result = EmailAddress.objects.filter(email=self.user.email)
if len(result):
return result[0].verified
return False
#User.profile = property(lambda u: UserProfile.objects.get_or_create(user=u)[0])
def create_user_profile(sender, instance, created, **kwargs):
if created:
profile, created = UserProfile.objects.get_or_create(user=instance)
post_save.connect(create_user_profile, sender=User)
我的视图是设置用户个人资料设置的地方,如下所示:
@login_required
def user_settings (request):
"""
User settings view, handles changing of user settings and
entry distribution (eventually)
"""
if request.method == 'POST': # If the form has been submitted...
form = UserProfileForm(request.POST, instance=request.user.profile) # A form bound to the POST data
if form.is_valid(): # All validation rules pass
form.save ()
return render_to_response('sm/profile_update_success.html',
{},
context_instance=RequestContext(request))
else:
# create unbound form with initial values generated
# from the user's profile
form = UserProfileForm (instance=request.user.profile)
return render ( request, 'profile.html', { 'form': form, } )
直到最近它都运行良好,我不确定是什么改变让它停止了。谁能解释一下?
我正在使用 Django-1.7.4 和 django-allauth-0.19.1。对于调试,我使用的是 sqllite,我尝试使用 python manage.py migrate
和 python manage.py syncdb
创建它。
首先,如果它以前有效,我无法解释为什么它不再有效。
您应该检查 sqlite 文件本身,看看 table 是否存在。 (该文件通常在根目录下找到 db.sqlite3
,可以用任何标准的 sqlite 浏览器打开)
您提到您已经运行迁移,但实际的迁移已经到位了吗?
运行 python manage.py makemigrations
如果你还没有,请先。如果需要,验证迁移文件本身。
还有 python manage.py inspectdb
命令可以让您深入了解您正在使用的模型。
如果还是不行,当然可以从头开始。我可能在某处错过了捷径,但我会:
- 创建一份您确实需要保留的数据副本
(
python manage.py dumpdata --indent=4 <appname>
)(保存到灯具中) - 删除迁移文件
- 删除
db.sqlite3
- 运行
python manage.py makemigrations
- 运行
python manage.py migrate
- 使用
python manage.py loaddata <fixture-name>
重新加载旧数据
啊,答案是我从 INSTALLED_APPS
中注释掉了我的主要应用程序的条目。这很愚蠢。
我遇到了同样的问题,但对我来说解决方案不同。我在清理时不小心删除了迁移目录中的 init.py,这意味着某些迁移不会 运行 产生相同的错误。更换它解决了问题。
我遇到了同样的问题。为了修复它,我通过 Control+C 退出了服务器。比通过 运行ning 这两个命令迁移:$ python manage.py makemigrations 它告诉我 'profiles' 的迁移:
profiles/migrations/0001_initial.py
- Create model profile
比我运行$ python manage.py migrate
它告诉我
Operations to perform: Apply all migrations: admin, auth, contenttypes, profiles, sessions Running migrations:
Applying profiles.0001_initial... OK
现在我再次运行服务器$pythonmanage.py运行服务器
当我创建配置文件时它显示
[24/Aug/2018 19:36:16] "GET /admin/profiles/profile/add/ HTTP/1.1" 200 4381
[24/Aug/2018 19:36:19] "POST /admin/profiles/profile/add/ HTTP/1.1" 302 0
[24/Aug/2018 19:36:19] "GET /admin/profiles/profile/ HTTP/1.1" 200 4376
[24/Aug/2018 19:36:19] "GET /admin/jsi18n/ HTTP/1.1" 200 3217
[24/Aug/2018 19:36:19] "GET /static/admin/css/changelists.css HTTP/1.1" 200 6170
[24/Aug/2018 19:36:19] "GET /static/admin/img/tooltag-add.svg HTTP/1.1" 200 331
[24/Aug/2018 19:36:19] "GET /static/admin/img/icon-yes.svg HTTP/1.1" 200 436
配置文件已创建。希望有所帮助。
好的,看来您忘记了 运行 迁移命令;继续 运行 以下命令;在 Django shell:
$ python manage.py migrate
然后,
$ python manage.py makemigrations
$ python manage.py 迁移 --run-syncdb
这就是尝试的好方法