added semesters column to db

This commit is contained in:
Sriram Hariharan
2018-12-30 15:40:36 -06:00
parent 1b50d2d5a9
commit 1a7d334cf5
3 changed files with 63 additions and 11 deletions

9
todo
View File

@@ -27,3 +27,12 @@ DONE/FIXED:
- Showing the icon on the flags pages
- Easter egg, no course messages
- search by unique number
for FIXING DB:
ALTER TABLE agg ADD semesters
update agg
set semesters = (select group_concat(sem) from grades where agg.prof = grades.prof and agg.course_nbr = grades.course_nbr and agg.dept = grades.dept);