discourse/db/migrate/20161207030057_add_public_t...

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

8 lines
181 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddPublicToGroups < ActiveRecord::Migration[4.2]
2016-12-06 22:03:35 -05:00
def change
add_column :groups, :public, :boolean, default: :false, null: false
end
end