8 lines
179 B
Ruby
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
|