summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-07-06 04:37:06 +0200
committererdgeist <erdgeist@erdgeist.org>2026-07-06 04:37:06 +0200
commit2345668365640901658ca8085721ed1dd7d1c106 (patch)
treec2f32a35e628da0a180d4b87d3a6f48ca24feb3c
parent7384522a84e0f1d80ff471e4023f865c84768b2c (diff)
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.
-rw-r--r--db/migrate/20260706014724_drop_custom_rrule_from_events.rb5
1 files changed, 5 insertions, 0 deletions
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 @@
1class DropCustomRruleFromEvents < ActiveRecord::Migration[8.1]
2 def change
3 remove_column :events, :custom_rrule, :string
4 end
5end