tabletop-companion/db/migrate/20240619190424_add_parts_to...

8 lines
179 B
Ruby

# frozen_string_literal: true
class AddPartsToDiceRolls < ActiveRecord::Migration[7.1]
def change
add_column :dice_rolls, :dice, :jsonb, null: false, default: {}
end
end