Add contest duration & complete ranking mode implementation
This commit is contained in:
5
db/migrate/20251118074900_add_duration_to_contest.rb
Normal file
5
db/migrate/20251118074900_add_duration_to_contest.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddDurationToContest < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :contests, :duration, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddDurationSecondsToContest < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :contests, :duration_seconds, :integer
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user