Django框架-python manage.py makemigrations提示
问题描述:在执行 Django 迁移时,提示:
You are trying to add a non-nullable field 'record_id' to record without a default; we can't do that (the database needs something to populate existing rows).
翻译:你在尝试向 record表
添加一个非空字段 record_id
,我们无法做到(数据库需要向已存在行存入一些数据)
–
这里提供了两个选项:
1) Provide a one-off default now (will be set on all existing rows with a null value for this column)
我们自己提供一个值,这个值会被填入已存在的行的这列中
2) Quit, and let me add a default in models.py
选择退出,并且手动在模型中添加一个默认值
这里推荐使用第二种方式