1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-05 18:59:22 +00:00
discourse/db/migrate/20140210194146_add_primary_group_id_to_users.rb
2014-02-10 17:00:15 -05:00

6 lines
143 B
Ruby

class AddPrimaryGroupIdToUsers < ActiveRecord::Migration
def change
add_column :users, :primary_group_id, :integer, null: true
end
end