0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-05 18:46:18 +08:00
discourse/db/migrate/20250614020437_add_description_to_invites.rb
Ted Johansson 862116a176
FEATURE: Add description to invites (#33207)
Add the ability to attach a description to an invite for easier organization.
2025-06-16 11:31:07 +08:00

7 lines
174 B
Ruby
Vendored

# frozen_string_literal: true
class AddDescriptionToInvites < ActiveRecord::Migration[7.2]
def change
add_column :invites, :description, :string, limit: 100
end
end