Add migration for timer

This commit is contained in:
Daniel Schädler 2025-03-09 21:27:38 +01:00
parent 3c1168212e
commit 514bbb553b
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddTimerEndToTournaments < ActiveRecord::Migration[7.0]
def change
add_column :tournaments, :timer_end, :datetime
end
end