5
db/migrate/20251209073711_add_start_time_to_contest.rb
Normal file
5
db/migrate/20251209073711_add_start_time_to_contest.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddStartTimeToContest < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :contests, :start_time, :datetime
|
||||
end
|
||||
end
|
||||
5
db/migrate/20251209075739_add_pause_time_to_contest.rb
Normal file
5
db/migrate/20251209075739_add_pause_time_to_contest.rb
Normal file
@@ -0,0 +1,5 @@
|
||||
class AddPauseTimeToContest < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :contests, :pause_time, :datetime
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddShowStopwatchToContest < ActiveRecord::Migration[8.0]
|
||||
def change
|
||||
add_column :contests, :show_stopwatch, :boolean
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user