Django Interactive Console Debug

436 단어 djangosouth
1. 실행
python manager.py shell

상호 작용 모드 들어가기
2. 데이터베이스 연결
from django.db import connection, transaction
cur = connection.cursor()

3. sql 문장 조작 데이터베이스 실행
cur.execute("drop table south_migrationhistory")  # delete table south_migrationhistory
transaction.commit_unless_managed()   # commit changes to database

좋은 웹페이지 즐겨찾기