Files
fizzy/db/migrate/20241115234456_add_comments_count_to_bubbles.rb
T
2024-11-15 18:17:42 -06:00

6 lines
162 B
Ruby

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