MastoAPI: Add streaming for lists.

This commit is contained in:
eal 2018-05-30 16:33:37 +03:00
commit 5d3fdbc082
6 changed files with 56 additions and 3 deletions

View file

@ -0,0 +1,7 @@
defmodule Pleroma.Repo.Migrations.AddListFollowIndex do
use Ecto.Migration
def change do
create index(:lists, [:following])
end
end