python
1models.py 2from django.db import models 3 4# Create your models here. 5class Post(models.Model): 6 do_name = models.CharField(max_length=50) 7 start = models.DateTimeField() 8 finish = models.DateTimeField()
上のようにモデルを書いたのですが、opython manage.py makemigrationsをすると下記のようなエラーが出ました。
You are trying to add a non-nullable field 'do_name' to post without a default; we can't do that (the database needs something to populate existing rows).
Please select a fix:
- Provide a one-off default now (will be set on all existing rows with a null value for this column)
- Quit, and let me add a default in models.py
Select an option: 2
models.CharFiels()の引数をなしにしたりしても変わりませんでした。
どのようにしたらよいのでしょうか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。