mongodb으로 스키마, 모델 생성하기 (in node.js)
기본적으로 다음을 활용한다. 스키마를 통해 데이터의 이름과 타입을 지정하고 모델을 통해 해당 스키마의 모델을 만든다. const VideoSchema = new mongoose.Schema({}) const model = mongoose.model("모델의 이름", VideoSchema) 코드 예시는 다음과 같다. import mongoose from "mongoose"; const VideoSchema = new mongoose.Schema({ fileUrl: { type: String, required: "FileUrl is required" // 필수 항목을 작성하지 않았을 때 출력될 문구 }, title: { type: String, required: "title is required" }, de..