내 모델이었다모델, 사우스
class Author(Page):
dob = models.DateField("Date of birth")
내가 가진 DOB 필드와 업데이트 된 모델을 제거
: 다음이
python manage.py schemamigration project_name 001_initial--add-field Author.name, Author.email
:
class Author(Page):
name = models.CharField(max_length = 250)
email = models.EmailField()
는 다음 두 가지 명령을 입력을 명령
python manage.py migrate project_name
이미지 첨부 : 위의 명령으로 모델의 변경 사항을 저장할 수 없습니다.
당신의 도움이 필요!
로? – alecxe
@alecxe 그런 다음이 명령은 "아무 것도 변하지 않습니다" –