mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 03:27:40 +08:00
7 lines
180 B
Ruby
7 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddPublicToGroups < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :groups, :public, :boolean, default: false, null: false
|
|
end
|
|
end
|