마이그레이션 실행여부 확인하기
$ python manage.py showmigrations --list$ python manage.py showmigrations --list
admin
[X] 0001_initial
[X] 0002_logentry_remove_auto_add
student
[X] 0001_initial
[X] 0002_create_initial_student_key
[X] 0003_add_help_text
[ ] 0004_add_unique_constraint_to_student$ python manage.py showmigrations student --list$ python manage.py showmigrations --list | grep '\[ \]'
[ ] 0004_add_unique_constraint_to_studentLast updated