1

私は次のモデルを持っています -

class ToDo(models.Model):

    todo_title = models.CharField(null=True, blank=True, max_length=200)
    todo_status = models.IntegerField(choices=TASK_STATUS, null=True, blank=True)
    assigned_to = models.ManyToManyField(OrgStaff, null=True, blank=True, related_name='assigned_to')
    assigned_by = models.ManyToManyField(OrgStaff, null=True, blank=True, related_name='assigned_by')
    assigned_time = models.DateTimeField(auto_now_add=True)
    completed_time = models.DateTimeField(null=True, blank=True)

次に、 todoappがアプリの名前であるpython manage.py convert_to_south todoapp場所を実行します。それから私は走りますpython manage.py migrate todoapp.

それが完了したら、上記のモデルに別のフィールドを追加します -

class ToDo(models.Model):

    todo_title = models.CharField(null=True, blank=True, max_length=200)
    todo_slug = models.SlugField(null=True, blank=True)
    todo_status = models.IntegerField(choices=TASK_STATUS, null=True, blank=True)
    assigned_to = models.ManyToManyField(OrgStaff, null=True, blank=True, related_name='assigned_to')
    assigned_by = models.ManyToManyField(OrgStaff, null=True, blank=True, related_name='assigned_by')
    assigned_time = models.DateTimeField(auto_now_add=True)
    completed_time = models.DateTimeField(null=True, blank=True)

今、私はスキーママイゲーションを行います-python manage.py schemamigration todoapp --autoそして、python manage.py migrate todoappこれを行うと、次のエラーが発生します-

Running migrations for taskbase:
 - Migrating forwards to 0002_auto__add_field_todo_todo_slug.
 > taskbase:0002_auto__add_field_todo_todo_slug
KeyError: u'todo_title'

このエラーが発生する理由は何ですか? 頭を強打しましたが、理由がわかりません。

4

1 に答える 1