Merge branch 'quotes-count' into 'develop'
Count and display post quotes See merge request pleroma/pleroma!3956
This commit is contained in:
commit
752bc168f6
14 changed files with 292 additions and 3 deletions
|
|
@ -0,0 +1,11 @@
|
|||
# Pleroma: A lightweight social networking server
|
||||
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
||||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
defmodule Pleroma.Repo.Migrations.AddQuoteUrlIndexToObjects do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create_if_not_exists(index(:objects, ["(data->'quoteUrl')"], name: :objects_quote_url))
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue