Skip to content

Commit

Permalink
Checkbox for choosing between grading exam manually or automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
Maija Y committed Aug 19, 2024
1 parent c32f3dc commit 7f53726
Show file tree
Hide file tree
Showing 21 changed files with 329 additions and 171 deletions.
154 changes: 108 additions & 46 deletions services/headless-lms/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- Add down migration script here
ALTER TABLE exams DROP COLUMN grade_manually;
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ALTER TABLE exams
ADD COLUMN grade_manually BOOLEAN NOT NULL DEFAULT FALSE;
COMMENT ON COLUMN exams.grade_manually IS 'True if the exam is graded manually, false if automatically';

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7f53726

Please sign in to comment.