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

8 lines
179 B
Ruby
Raw Normal View History

2024-06-20 07:26:33 +00:00
# frozen_string_literal: true
class AddPartsToDiceRolls < ActiveRecord::Migration[7.1]
def change
add_column :dice_rolls, :dice, :jsonb, null: false, default: {}
end
end