Files
kondiplo_front/db/migrate/20260206132822_create_turns.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

14 lines
281 B
Ruby

class CreateTurns < ActiveRecord::Migration[8.1]
def change
create_table :turns do |t|
t.integer :number
t.string :phase
t.json :game_stat
t.text :svg_date
t.references :game, null: false, foreign_key: true
t.timestamps
end
end
end