discourse/db/migrate/20150410002033_add_primary_...

6 lines
162 B
Ruby
Raw Normal View History

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