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