0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-07 13:19:19 +08:00
discourse/plugins/discourse-calendar/db/migrate/20200812193122_add_recurrence_to_events.rb
2025-07-15 16:38:05 +02:00

11 lines
253 B
Ruby
Vendored

# frozen_string_literal: true
class AddRecurrenceToEvents < ActiveRecord::Migration[6.0]
def up
add_column :discourse_post_event_events, :recurrence, :string
end
def down
remove_column :discourse_post_event_events, :recurrence
end
end