2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/db/migrate/20150410002033_add_primary_group_to_groups.rb

5 lines
162 B
Ruby

class AddPrimaryGroupToGroups < ActiveRecord::Migration[4.2]
def change
add_column :groups, :primary_group, :boolean, default: false, null: false
end
end