Public scoreboard stopwatch feature

#10
This commit is contained in:
sto
2025-12-09 10:10:54 +01:00
parent ee250b96ad
commit cce090587a
19 changed files with 167 additions and 8 deletions

View File

@@ -0,0 +1,5 @@
class AddStartTimeToContest < ActiveRecord::Migration[8.0]
def change
add_column :contests, :start_time, :datetime
end
end

View File

@@ -0,0 +1,5 @@
class AddPauseTimeToContest < ActiveRecord::Migration[8.0]
def change
add_column :contests, :pause_time, :datetime
end
end

View File

@@ -0,0 +1,5 @@
class AddShowStopwatchToContest < ActiveRecord::Migration[8.0]
def change
add_column :contests, :show_stopwatch, :boolean
end
end