-
Notifications
You must be signed in to change notification settings - Fork 100
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
feat(member): remove gender #750
Changes from all commits
c1d146c
acac8ea
c8485ca
55ddbac
97f9a50
266472c
3522489
30cb4f3
b4722ec
590d7fb
8f3014d
e05377c
0b86586
9b0b5a3
a188a17
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export * from "./member"; | ||
export * from "./recruitments"; | ||
export * from "./applicationForms"; | ||
export * from "./members"; | ||
export * from "./recruitments"; | ||
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,6 @@ import apply.domain.judgmentitem.JudgmentItemRepository | |
import apply.domain.judgmentitem.ProgrammingLanguage | ||
import apply.domain.mail.MailHistory | ||
import apply.domain.mail.MailHistoryRepository | ||
import apply.domain.member.Gender | ||
import apply.domain.member.Member | ||
import apply.domain.member.MemberRepository | ||
import apply.domain.member.Password | ||
|
@@ -258,33 +257,29 @@ class DatabaseInitializer( | |
name = "홍길동", | ||
email = "a@email.com", | ||
phoneNumber = "010-0000-0000", | ||
gender = Gender.MALE, | ||
birthday = createLocalDate(2020, 4, 17), | ||
password = Password("password") | ||
password = Password("password"), | ||
), | ||
Member( | ||
name = "홍길동2", | ||
email = "b@email.com", | ||
phoneNumber = "010-0000-0000", | ||
gender = Gender.FEMALE, | ||
birthday = createLocalDate(2020, 5, 5), | ||
password = Password("password") | ||
password = Password("password"), | ||
), | ||
Member( | ||
name = "홍길동3", | ||
email = "c@email.com", | ||
phoneNumber = "010-0000-0000", | ||
gender = Gender.MALE, | ||
birthday = createLocalDate(2020, 1, 1), | ||
password = Password("password") | ||
password = Password("password"), | ||
), | ||
Member( | ||
name = "홍길동4", | ||
email = "d@email.com", | ||
phoneNumber = "010-0000-0000", | ||
gender = Gender.MALE, | ||
birthday = createLocalDate(2020, 1, 1), | ||
password = Password("password") | ||
password = Password("password"), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 질문: 항상 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 코틀린의 버전이 특정 버전 이상이 되면 Ktlint에서 이를 기본 코딩 규칙으로 사용하더라고요. 미리 사용해 보고 있어요! |
||
) | ||
) | ||
memberRepository.saveAll(members) | ||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a: import문을 정리해 주셨군요 🙇♂️