Modify sort index for activities.
authorlain <lain@soykaf.club>
Sun, 13 May 2018 10:54:08 +0000 (12:54 +0200)
committerlain <lain@soykaf.club>
Sun, 13 May 2018 10:54:08 +0000 (12:54 +0200)
This prevents a problem that made the local timeline very slow when
there were few posts.

priv/repo/migrations/20180513104714_modify_activity_index.exs [new file with mode: 0644]

diff --git a/priv/repo/migrations/20180513104714_modify_activity_index.exs b/priv/repo/migrations/20180513104714_modify_activity_index.exs
new file mode 100644 (file)
index 0000000..2df5308
--- /dev/null
@@ -0,0 +1,9 @@
+defmodule Pleroma.Repo.Migrations.ModifyActivityIndex do
+  use Ecto.Migration
+  @disable_ddl_transaction true
+
+  def change do
+    create index(:activities, ["id desc nulls last", "local"], concurrently: true)
+    drop_if_exists index(:activities, ["id desc nulls last"])
+  end
+end