mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 01:43:48 +08:00
6 lines
119 B
Ruby
6 lines
119 B
Ruby
|
class AddFullNameToGroups < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :groups, :full_name, :string
|
||
|
end
|
||
|
end
|