Fix: 一部サーバーの投稿が参照引用できない問題・参照引用時、フェッチを基本しないよう変更 (#360)

This commit is contained in:
KMY(雪あすか) 2023-12-15 08:40:59 +09:00 committed by GitHub
parent 6dbe5c882d
commit 1f73b81bd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 81 additions and 18 deletions

View file

@ -0,0 +1,13 @@
# frozen_string_literal: true
class IndexToStatusesURL < ActiveRecord::Migration[7.1]
disable_ddl_transaction!
def up
add_index :statuses, :url, name: :index_statuses_on_url, algorithm: :concurrently, opclass: :text_pattern_ops, where: 'url IS NOT NULL AND url <> uri'
end
def down
remove_index :statuses, name: :index_statuses_on_url
end
end