mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 13:09:33 -06:00
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
|