mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 18:46:18 +08:00
7 lines
174 B
Ruby
Vendored
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
|