mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
7 lines
185 B
Ruby
Vendored
7 lines
185 B
Ruby
Vendored
# frozen_string_literal: true
|
|
#
|
|
class AddRecurrenceUntil < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :discourse_post_event_events, :recurrence_until, :datetime
|
|
end
|
|
end
|