Django models.py 편집 후 업데이트
1376 단어 Django
1、python manage.py makemigrations
2 、python manage.py migrate
said@said:/mnt/hgfs/codes_shared/web/mysite$ python manage.py makemigrations
Did you rename choice.choice_text to choice.m_choice_text (a CharField)? [y/N] y
Did you rename choice.question to choice.m_question (a ForeignKey)? [y/N] y
Did you rename choice.votes to choice.m_votes (a IntegerField)? [y/N] y
Did you rename question.pub_date to question.m_pub_date (a DateTimeField)? [y/N] y
Did you rename question.question_text to question.m_question_text (a CharField)? [y/N] y
Migrations for 'polls':
0002_auto_20160831_1719.py:
- Rename field choice_text on choice to m_choice_text
- Rename field question on choice to m_question
- Rename field votes on choice to m_votes
- Rename field pub_date on question to m_pub_date
- Rename field question_text on question to m_question_text
said@said:/mnt/hgfs/codes_shared/web/mysite$ python manage.py migrate
Operations to perform:
Synchronize unmigrated apps: staticfiles, messages
Apply all migrations: admin, contenttypes, polls, auth, sessions
Synchronizing apps without migrations:
Creating tables...
Running deferred SQL...
Installing custom SQL...
Running migrations:
Rendering model states... DONE
Applying polls.0002_auto_20160831_1719... OK
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Django 라우팅 계층 URLconf 작용 및 원리 해석URL 구성(URLconf)은 Django가 지원하는 웹 사이트의 디렉토리와 같습니다.그것의 본질은 URL과 이 URL을 호출할 보기 함수 사이의 맵표입니다. 위의 예제에서는 URL의 값을 캡처하고 위치 매개 변수로...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.