Files
kondiplo_front/db/migrate/20260206132054_create_games.rb
kontei f25fd6f802
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
CI / system-test (push) Has been cancelled
フロントエンドプレイアブル
2026-02-15 14:57:17 +09:00

12 lines
208 B
Ruby

class CreateGames < ActiveRecord::Migration[8.1]
def change
create_table :games do |t|
t.string :title
t.integer :participants_count
t.text :memo
t.timestamps
end
end
end