-
Notifications
You must be signed in to change notification settings - Fork 0
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
[4주차] 기본/도전 과제 제출 #3
base: main
Are you sure you want to change the base?
Conversation
seminar4/src/service/userService.ts
Outdated
|
||
const data = await prisma.user.create({ | ||
data: { | ||
userName: name, //userName으로 받은 거를 name에 담어. |
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.
name 이라는 이름으로 받은 값을 userName이라는 필드에 담는다 가 맞습니다!
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.
아 반대로 이해하고 있었군여 정정해주셔서 감사합니다!!!
그러니까 처음으로 세팅하며 schema를 테스트해보고 적용해보는 단계에서 사용되고, 가장 좋은 방법은 DB설계를 잘해서 스키마를 수정하지 않는것이고, 만약 바꾸게 된다면 DBMS에서 직접 바꾸는게 좋은것 같아요. 꼭 prisma를 사용하려고 한다면 |
SERVER PR
🐕 과제 구현 명세
GET - api/contents/:contentsId
POST - api/contents
🐥 이런 점이 새로웠어요 / 어려웠어요
npx prisma db push
를 해주면, 컬럼명이 바뀜과 동시에 이전에 넣었던 데이터들이 싹 날아가더라구요. 물론 확인차 질문을 하고 제가 yes를 해야 진행되지만,,, 날리는 거 없이 수정하는 방법은 없는지 알아봐야겠습니다.