# frozen_string_literal: true
class PostCommentLocked < ActiveRecord::Migration[6.1]
def change
Post.without_timeout do
add_column :posts, :is_comment_disabled, :boolean, null: false, default: false
end