db_samples_file.txt 711 Bytes
1.mongodb접속
2.db선택(ex: myb)
3.아래 절차에 따라 데이터 샘플 생성

// users collection 생성 및 테스트 계정 삽입
db.users.insertOne({"id" : "khu120", "pwd" : "$2a$08$1iBVuYJng3JrqMGGzMCXOe.cIYPau.SWEB2eqj/Q5gX7uWPQWotDG", "name" : "khu120"})

// timetable collection 생성 및 테스트 데이터 삽입
db.timetables.insertOne({"user_id" : "khu120", "pname" : "런닝맨", "pweekday" : 0, "start_hour" : 1, "start_min" : 50})
db.timetables.insertOne({"user_id" : "khu120", "pname" : "짠내투어", "pweekday" : 6, "start_hour" : 20, "start_min" : 20})
db.timetables.insertOne({"user_id" : "khu120", "pname" : "골목식당", "pweekday" : 0, "start_hour" : 20, "start_min" : 20})