diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-07-06 04:37:06 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-07-06 04:37:06 +0200 |
| commit | 2345668365640901658ca8085721ed1dd7d1c106 (patch) | |
| tree | c2f32a35e628da0a180d4b87d3a6f48ca24feb3c /db | |
| parent | 7384522a84e0f1d80ff471e4023f865c84768b2c (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.
Diffstat (limited to 'db')
| -rw-r--r-- | db/migrate/20260706014724_drop_custom_rrule_from_events.rb | 5 |
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 @@ | |||
| 1 | class DropCustomRruleFromEvents < ActiveRecord::Migration[8.1] | ||
| 2 | def change | ||
| 3 | remove_column :events, :custom_rrule, :string | ||
| 4 | end | ||
| 5 | end | ||
