프리즈마에서 날짜형식에 데이터를 사용하려면 주의해야 한다.
날짜 형식에 대한 확실한 스키마 정의를 위해 나는 @db.Date 라는 애를 추가해 주었다.
아래에는 내가 참고한 글이다.
You can try to use Native Types
: https://www.prisma.io/docs/concepts/components/prisma-schema/data-model#native-types-mapping
@db.Date
I had this issue since Prisma 1. I store hotel arrivals and departures as numbers, like: 20210605
I can then even search availability by using gt or lt.
참고한 사이트
https://github. com/prisma/prisma/issues/7490
날짜만 저장하도록 하는건데, 시간까지 같이 나와서 처리 과정에서 손이 좀 갓다.
이렇게 나올줄 알았다면 .. ㅋㅋㅋ 차라리 문자열로 사용하는 방법이 더 나았을지도 모르겟다
'TIL' 카테고리의 다른 글
23/12/18 TIL __ 백오피스 프로젝트 끝 (0) | 2023.12.18 |
---|---|
23/12/16 TIL __ An operation failed because it depends on one or more records that were required but not found. Record to update not found. 에러 (0) | 2023.12.16 |
23/12/13 __ TIL DB 테이블 설계하기 (0) | 2023.12.14 |
23/12/12 TIL __ 정렬 알고리즘 (0) | 2023.12.12 |
23/12/11 TIL __ TypeScript (0) | 2023.12.11 |