disable moderation on the forums

This commit is contained in:
Andrew Brown 2018-11-01 18:47:35 -05:00
parent f8de631cf8
commit deef8142ec

View File

@ -0,0 +1,5 @@
class DisableModerationOnForums < ActiveRecord::Migration[5.2]
def change
change_column_default :thredded_user_details, :moderation_state, 1 # approved
end
end