Files
puzzle-scoreboard/db/migrate/20251029155116_create_offlines.rb
sto 35ad7da355
Some checks failed
CI / scan_ruby (push) Successful in 18s
CI / scan_js (push) Successful in 15s
CI / lint (push) Failing after 14s
CI / test (push) Failing after 15m10s
Add offline model and "new" form/controller
2025-10-29 17:20:38 +01:00

11 lines
265 B
Ruby

class CreateOfflines < ActiveRecord::Migration[8.0]
def change
create_table :offlines do |t|
t.timestamps
t.belongs_to :contest, null: false, foreign_key: true
t.datetime :start_time, null: false
t.datetime :end_time
end
end
end