반응형
오류
You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
라는 문제가 발생하였다
해결
migration을 해주지 않아 생긴 문제로 터미널 창에
python manage.py makemigrations
python manage.py migrate
를 작성해주면 빠르게 해결할 수 있었다.
반응형