mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
87c1e98571
User flair was given by user's primary group. This PR separates the two, adds a new field to the user model for flair group ID and users can select their flair from user preferences now.
8 lines
175 B
Ruby
8 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddFlairGroupIdToUsers < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :users, :flair_group_id, :integer, null: true
|
|
end
|
|
end
|