Add contest duration & complete ranking mode implementation

This commit is contained in:
sto
2025-11-18 09:18:18 +01:00
parent b88460ae71
commit e67ee92838
12 changed files with 62 additions and 12 deletions

View File

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

View File

@@ -0,0 +1,5 @@
class AddDurationSecondsToContest < ActiveRecord::Migration[8.0]
def change
add_column :contests, :duration_seconds, :integer
end
end