mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:54:23 +08:00
6 lines
124 B
Ruby
6 lines
124 B
Ruby
class AddFullNameToGroups < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :groups, :full_name, :string
|
|
end
|
|
end
|