Files
fizzy/db/migrate/20250404074315_remove_bubbles_auto_pop_at.rb
T
Jorge Manrubia 08cb69aca5 Replace auto_pop_at with generic last_activity column
so that we can use it in other scenarios
2025-04-04 09:45:56 +02:00

6 lines
124 B
Ruby

class RemoveBubblesAutoPopAt < ActiveRecord::Migration[8.1]
def change
remove_column :bubbles, :auto_pop_at
end
end