Fix week numbering being off by one and add custom semester starts per module

This commit is contained in:
2023-10-01 17:57:03 +01:00
parent ef34d1c5b5
commit 915ce5112d
3 changed files with 8 additions and 2 deletions
@@ -0,0 +1,5 @@
class AddSemesterStartDateToCourse < ActiveRecord::Migration[7.0]
def change
add_column :courses, :semester_start_date, :date, default: START_OF_YEAR_5_SEMESTER_1.to_date
end
end