discourse/db/migrate/20161212123649_add_allow_me...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
216 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddAllowMembershipRequestsToGroups < ActiveRecord::Migration[4.2]
def change
add_column :groups, :allow_membership_requests, :boolean, default: false, null: false
end
end