Files
fizzy/db/migrate/20250206141302_change_bubbles_status_default_to_creating.rb
T
2025-02-11 14:34:39 +00:00

6 lines
152 B
Ruby

class ChangeBubblesStatusDefaultToCreating < ActiveRecord::Migration[8.1]
def change
change_column_default :bubbles, :status, :creating
end
end