forked from e621ng/e621ng
10 lines
230 B
Ruby
10 lines
230 B
Ruby
# 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
|
|
end
|
|
end
|