BACKEND/MongoDB
[Mongoose] 외부에서 정의한 Schema 사용하기
models 폴더의 schema.js // ./models/schema.js const mongoose = require('mongoose'); const { Schema } = mongoose; const ChatSchema = new Schema({ userId: { type: String }, text: { type: String, createdAt: { type: Date, default: Date.now, immutable: true }}, }, { versionKey: false }) module.exports = mongoose.model('Chat', ChatSchema); module.exports = mongoose.model('Chat', ChatSchema); 마지막줄로 등록한 모델..