mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 23:06:19 +08:00
845170bd6b
There are 4 visibility levels - public (default) - members only - staff - owners Note, admins and group owners ALWAYS have visibility to groups Migration treated old "non public" as "members only"
13 lines
298 B
Ruby
13 lines
298 B
Ruby
class AddVisibilityLevelToGroups < ActiveRecord::Migration
|
|
def change
|
|
|
|
add_column :groups, :visibility_level, :integer, default: 0, null: false
|
|
execute <<~SQL
|
|
UPDATE groups
|
|
SET visibility_level = 1
|
|
WHERE NOT visible
|
|
SQL
|
|
remove_column :groups, :visible
|
|
end
|
|
end
|