How to get Django AutoFields to start at a higher number - Stack Overflow
2761 단어 overflow
1
down vote
For MySQL i created a signal that does this after syncdb:
from django.db.models.signals import post_syncdb from project.app import models as app_models def auto_increment_start(sender, **kwargs): from django.db import connection, transaction cursor = connection.cursor() cursor = cursor.execute(""" ALTER table app_table AUTO_INCREMENT=2000 """) transaction.commit_unless_managed() post_syncdb.connect(auto_increment_start, sender=app_models)
After a syncdb the alter table statement is executed. This will exempt you from having to login into mysql and issuing it manually.
EDIT: I know this is an old thread, but I thought it might help someone.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
귀속으로 인한 StackOverflow의 분석먼저 우리는 하나의 프로그램이 하나의 프로세스 아래에서 실행되고 프로세스 아래에서 많은 스레드가 실행될 수 있지만 모든 스레드가 차지할 수 있는 메모리 컨트롤러는 유한하다는 것을 이해해야 한다. 약 1M이고 한 스레...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.