Add judges codes
Some checks failed
CI / scan_ruby (push) Failing after 18s
CI / scan_js (push) Successful in 15s
CI / lint (push) Successful in 15s
CI / test (push) Failing after 45s

This commit is contained in:
sto
2025-11-20 16:59:30 +01:00
parent b43a801e3c
commit 94e725d20a
15 changed files with 184 additions and 113 deletions

View File

@@ -0,0 +1,5 @@
class AddCodeToContest < ActiveRecord::Migration[8.0]
def change
add_column :contests, :code, :string
end
end

View File

@@ -0,0 +1,5 @@
class AddCodeToCompletion < ActiveRecord::Migration[8.0]
def change
add_column :completions, :code, :string
end
end