Files
fizzy/db/migrate/20241009191318_add_boost_count_to_bubbles.rb
T
2024-10-11 20:14:09 -05:00

6 lines
156 B
Ruby

class AddBoostCountToBubbles < ActiveRecord::Migration[8.0]
def change
add_column :bubbles, :boost_count, :integer, null: false, default: 0
end
end