change3 Django - HINT: Add or change a related_name argument to the definition for 'pybo.Question.voter' or 'pybo.Question.author'. - 해결 흠.. 이쯤되면 일부러 저자분이 에러를 유도하시는건지 의문이 들정도로 에러가 많이 나온다. 물론 지금 이 상황은 의도적이였다고 써있다. #1 상황 ERRORS: pybo.Question.author: (fields.E304) Reverse accessor 'User.question_set' for 'pybo.Question.author' clashes with reverse accessor for 'pybo.Question.voter'. HINT: Add or change a related_name argument to the definition for 'pybo.Question.author' or 'pybo.Question.voter'. pybo.Question.voter: (fields.E304) R.. 2022. 12. 22. django - Error HINT: Add or change a related_name argument to the definition for 'instagram.Post.author' or 'blog1.Post.author'. models.py의 간단한 부분을 고쳐주고 makemigrations, migrate를 하려고하니깐 에러가 떴다. ERRORS: blog1.Post.author: (fields.E304) Reverse accessor 'User.post_set' for 'blog1.Post.author' clashes with reverse accessor for 'instagram.Post.author'. HINT: Add or change a related_name argument to the definition for 'blog1.Post.author' or 'instagram.Post.author'. instagram.Post.author: (fields.E304) Reverse accessor 'User.pos.. 2022. 12. 14. Git - github연결 루틴1 (remote 확인, 연결, 변경) #1 remote 1) git remote -v 로 현재 연결되어있는 remote를 확인한다. 연결이 되어있으면 무언가가 나올것이고 연결이 안되어있다면 아무것도 안나올것이다. git remote 는 현재 로컬에서 github등에 연결된 remote의 이름을 확인해주는 명령이다. 2) git remote가 이미 설정된 것을 변경하는 것은 변경이라기보단 삭제를 일단 방법으로 찾았다. # 삭제 git remote rm origin # 생성 만약 git remote가 설정되지 않은곳에 설정하는 것은 git remote add 리모트이름 링크 리모트이름은 보통의 경우에 origin이라고 부른다. 물론 어떻게 하든 자유지만 origin이라고 하는게 상호간의 작업에서 좋다는 것 같다. # remote 이름 변경 gi.. 2022. 10. 14. 이전 1 다음