Skip to content

Commit

Permalink
[hotfix] course_title 빈 스트링 가능하도록 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Hank-Choi committed Aug 28, 2023
1 parent be0e505 commit 4bc2f80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/timetable/TimetableRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let userLectureSchema = new mongoose.Schema({
classification: String, // 교과 구분
department: String, // 학부
academic_year: String, // 학년
course_title: {type: String, required: true}, // 과목명
course_title: {type: String, required: true, default: ""}, // 과목명
credit: Number, // 학점
class_time: String,
real_class_time: String,
Expand Down

0 comments on commit 4bc2f80

Please sign in to comment.