Allow programming groups to score exercises remotely

This commit is contained in:
Sebastian Serth
2023-11-01 23:56:56 +01:00
committed by Sebastian Serth
parent fe26378387
commit 3b05a44b9e
5 changed files with 19 additions and 7 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddProgrammingGroupToRemoteEvalutionMapping < ActiveRecord::Migration[7.1]
def change
add_reference :remote_evaluation_mappings, :programming_group, index: true, null: true, foreign_key: true
end
end