discourse/db/migrate/20140102104229_add_alias_level_to_groups.rb
Benjamin Kampmann c743a985a4 Allow groups to be used as aliases for user mention
when configured by the admin a group can be found through the @mentions
feature in both the compose/reply and the private message user-selectors
and once selected the mention will be replaced by the list of users in
the group
2014-01-08 02:36:24 +11:00

6 lines
136 B
Ruby

class AddAliasLevelToGroups < ActiveRecord::Migration
def change
add_column :groups, :alias_level, :integer, default: 0
end
end