python-Django迁移
作者:互联网
我正在尝试在Django上建立博客.我所做的只是创建模型.他们来了:
from django.db import models
import uuid
class Users(models.Model):
username = models.CharField(max_length = 32, primary_key = True)
password = models.CharField(max_length = 32)
email = models.EmailField()
registration_date = models.DateTimeField(auto_now_add = True)
class Posts(models.Model):
author = models.ForeignKey("Users")
header = models.CharField(max_length=100)
body = models.TextField()
pub_date = models.DateTimeField(auto_now_add = True)
mod_date = models.DateTimeField(auto_now = True)
upvotes = models.PositiveIntegerField()
views = models.PositiveIntegerField()
post_id = models.AutoField(primary_key = True)
class Answers(models.Model):
body = models.TextField()
author = models.ForeignKey("Users")
pub_date = models.DateTimeField(auto_now_add = True)
mod_date = models.DateTimeField(auto_now = True)
post = models.ForeignKey("Posts")
answer_id = models.UUIDField(primary_key = True, default=uuid.uuid4)
运行python manage.py migration之后,我得到以下信息:
You are trying to add a non-nullable field ‘post_id’ to posts without
a default; we can’t do that (the database need mething to populate existing
rows).
Please select a fix:
1) Provide a one-off default now (will be set on all existing rows)
2) Quit, and let me add a default in models.py
即使我按1并尝试设置一个随机的一次性值,它也可以成功迁移,但后来在网站上崩溃时显示“无此表:blog_posts”.但是我认为它应该没有手动设置默认值的变通办法.
我尝试使用Posts and Answers的主键.我尝试完全删除它们,以便django自行自动设置它们,并尝试将其从AutoField更改为UUIDField,反之亦然,但这没有帮助.我究竟做错了什么?
解决方法:
您会看到此错误消息,因为django试图建立一致的迁移历史记录,并且它抱怨说,如果有一个数据库保存了您的旧迁移数据,并且您试图添加一个不可为空的字段,不知道该怎么办.
迁移应该放入版本控制中,并在不同的开发/生产环境中使用.如果添加的字段不能为空,则为其他环境的现有数据(例如,生产数据库中保存的模型不具有post_id字段),那么django会警告您,并显示错误消息,并且提供两种解决方案:
>该字段应始终填充默认值(您必须修改models.py)
>这是一次迁移,您需要提供一个一次性的值,例如“ LEGACY”以标记迁移前的数据.
如果您不在生产环境中,并且开发服务器上没有有价值的数据,则修复此错误消息的简单方法就是删除现有的迁移文件,然后运行python manage.py makemigrations&& python manage.py再次迁移.
标签:django-migrations,python,django 来源: https://codeday.me/bug/20191120/2042594.html