-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
자료형 도메인 설계하기 #8
Labels
enhancement
New feature or request
Comments
2 tasks
논의 결과, 가짜 데이터의 자료형 도메인은 DB에 저장할 필요 없다는 결론. 따라서 enum으로 관리한다. |
가짜 데이터 자료형의 검색 기능은 추가 기능으로 고려하고, 일단 기본 구현 계획에서는 제외해서 프로젝트 계획을 단순하게 잡아보기로 결정했다. |
djkeh
added a commit
that referenced
this issue
Jul 29, 2024
가짜 데이터 타입은 DB에 저장 관리하지 않기로 함. 따라서 타입을 용이하게 관리할 수 있는 enum 방식을 선택. enum 정보는 가짜 데이터 생성에 필요한 옵션 정보를 들고 있고, 이를 프론트에도 넘겨줄 수 있도록 하는 방법을 추가로 고민함. 구현한 내용을 간단히 문자열 변환하여 테스트함.
Merged
github-project-automation
bot
moved this from Backlog
to Done
in 패스트캠퍼스 - 10개 프로젝트로 시작하는 백엔드 웹개발
Jul 29, 2024
djkeh
added a commit
that referenced
this issue
Jul 29, 2024
직전 작업 #8 에서 `mockDataType` 필드는 enum으로 관리하게 되었음. 이 변경을 `MockData` 설계에 반영함.
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
가짜 데이터를 만들 때, 이는 특정한 자료형이 된다. (ex: 문자열, 숫자, 이름, 이메일, 전화번호, 자동차 등등)
이 자료형의 구조를 설계해서 자료형을 참조하면 해당 자료형에 알맞는 가짜 데이터를 생성할 수 있도록 기반을 만든다.
Todo
from
~to
), 출력 형식자료형은 검색해서 찾을 수 있어야 한다: 인덱스 고려Reference
The text was updated successfully, but these errors were encountered: