diff --git a/db/migrate/20250212103251_add_auto_pop_at_to_bubbles.rb b/db/migrate/20250212103251_add_auto_pop_at_to_bubbles.rb new file mode 100644 index 000000000..d2185265f --- /dev/null +++ b/db/migrate/20250212103251_add_auto_pop_at_to_bubbles.rb @@ -0,0 +1,7 @@ +class AddAutoPopAtToBubbles < ActiveRecord::Migration[8.1] + def change + change_table :bubbles do |t| + t.datetime :auto_pop_at, index: true + end + end +end