mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
8 lines
197 B
Ruby
8 lines
197 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class GroupsPublishReadState < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :groups, :publish_read_state, :boolean, null: false, default: false
|
||
|
end
|
||
|
end
|