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/20250616101944_add_location_to_event.rb
2025-07-15 16:38:05 +02:00

7 lines
187 B
Ruby
Vendored

# frozen_string_literal: true
class AddLocationToEvent < ActiveRecord::Migration[7.2]
def change
add_column :discourse_post_event_events, :location, :string, limit: 1000
end
end