From 2345668365640901658ca8085721ed1dd7d1c106 Mon Sep 17 00:00:00 2001 From: erdgeist Date: Mon, 6 Jul 2026 04:37:06 +0200 Subject: Drop dead custom_rrule column from events Forms were already cleaned up in an earlier commit; the column itself was the last remnant. Dropping the column surfaced a live reference in events#index (fixed separately, 970f108) - this migration file itself just never got staged until now. --- db/migrate/20260706014724_drop_custom_rrule_from_events.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20260706014724_drop_custom_rrule_from_events.rb diff --git a/db/migrate/20260706014724_drop_custom_rrule_from_events.rb b/db/migrate/20260706014724_drop_custom_rrule_from_events.rb new file mode 100644 index 0000000..7e27ba7 --- /dev/null +++ b/db/migrate/20260706014724_drop_custom_rrule_from_events.rb @@ -0,0 +1,5 @@ +class DropCustomRruleFromEvents < ActiveRecord::Migration[8.1] + def change + remove_column :events, :custom_rrule, :string + end +end -- cgit v1.3