저장을 습관화
node.js mongoose 시간 적는 법 본문
https://mongoosejs.com/docs/timestamps.html
Mongoose v7.3.0: Mongoose Timestamps
Mongoose schemas support a timestamps option. If you set timestamps: true, Mongoose will add two properties of type Date to your schema: createdAt: a date representing when this document was created updatedAt: a date representing when this document was las
mongoosejs.com
https://choice91.tistory.com/49
[Node.js / Sequelize] created_at, updated_at 시간을 한국시간대로 표기하기
📌 timestamps 모델을 생성할 때 'timestamps: true' 옵션을 주면 데이터베이스에 created_at, updated_at을 자동으로 생성해준다. 현재시간을 created_at에 자동으로 넣어주는데 문제는 표준시간이 UTC+00:00라는
choice91.tistory.com
이걸 몰라서 한참 헤맸었는데.... 검색하니 바로 나온다
검색을 잘하는것도 능력이다..
'공부 > node.js' 카테고리의 다른 글
에러 기록 - JsonWebTokenError: invalid signature (0) | 2023.06.22 |
---|---|
.toHexString() (0) | 2023.06.19 |
에러 기록 - MongoServerError: E11000 duplicate key error (0) | 2023.06.18 |
과제 기록 - Node.js, express, MongoDB, mongoose, AWS EC2 (0) | 2023.06.18 |
mongoose의 __V 필드 (0) | 2023.06.15 |