From e9ff277599879f30c263cda43bb452f04c62a6a6 Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Wed, 12 Feb 2025 10:37:37 +0000 Subject: [PATCH] Add auto_pop_at --- db/migrate/20250212103251_add_auto_pop_at_to_bubbles.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/migrate/20250212103251_add_auto_pop_at_to_bubbles.rb 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