Add support for fediverse:creator
OpenGraph tag (#30398)
This commit is contained in:
parent
4a77e477ee
commit
128987eded
11 changed files with 105 additions and 15 deletions
|
@ -0,0 +1,10 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class AddAuthorAccountIdToPreviewCards < ActiveRecord::Migration[7.1]
|
||||
disable_ddl_transaction!
|
||||
|
||||
def change
|
||||
safety_assured { add_reference :preview_cards, :author_account, null: true, foreign_key: { to_table: 'accounts', on_delete: :nullify }, index: false }
|
||||
add_index :preview_cards, :author_account_id, algorithm: :concurrently, where: 'author_account_id IS NOT NULL'
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue