Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # Django Migrations ## 관련 명령어 ```py # 마이그레이션 파일 생성 $ python manage.py makemigrations <app-name> # 마이그레이션 적용 $ python manage.py migrate <app-name> # 마이그레이션 적용 현황 $ python manage.py showmigrations <app-name> # 지정 마이그레이션의 SQL 내역 python manage.py sqlmigrate <app-name> <migration-name> ``` ## 출처 - https://wayhome25.github.io/django/2017/03/20/django-ep6-migrations/ open/django-migrations.txt Last modified: 2024/10/05 06:15by 127.0.0.1