작성한 질문수
페이스북 클론 - full stack 웹 개발
accounts-model
해결된 질문
작성
·
1.2K
0
python manage.py migrate 명령하니
TypeError: argument of type 'PosixPath' is not iterable
라고 뜨네요. 어디서 나온 'PosixPath' 인지 모르겠어요.
아래는 워크스페이스 주소인데 봐줄 수 있나요?
https://goor.me/sZ6Jn
답변 1
facebookclone/config/static/settings.py 의 82번째 라인 데이터베이스 설정에 기입된
'NAME': BASE_DIR / 'db.sqlite3' 가 문제 였네요.
'NAME': os.path.join(BASE_DIR, 'db.sqlite3') 로 바꾸니 해결됐습니다.