Files
puzzle-scoreboard/db/migrate/20260725121740_create_events.rb
sto 35b304d913
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
Events: initial implementation
2026-07-26 14:01:29 +02:00

8 lines
132 B
Ruby

class CreateEvents < ActiveRecord::Migration[8.0]
def change
create_table :events do |t|
t.timestamps
end
end
end