puzzle-scoreboard/db/migrate/20250313142853_create_contests.rb
sto 50280ce389
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
Initial app
2025-03-14 15:36:05 +01:00

11 lines
215 B
Ruby

class CreateContests < ActiveRecord::Migration[8.0]
def change
create_table :contests do |t|
t.string :name
t.belongs_to :user, null: false, foreign_key: true
t.timestamps
end
end
end