diff options
| author | lain <lain@soykaf.club> | 2018-05-13 12:54:08 +0200 |
|---|---|---|
| committer | lain <lain@soykaf.club> | 2018-05-13 12:54:08 +0200 |
| commit | 94c1f28ba4b333513166a7273e892c7c9cfd4353 (patch) | |
| tree | caeee9a11bddddf5c9802fd7f53d072cfb190dd3 /priv/repo/migrations | |
| parent | c7a85de35c3ef8cfca447ffdb85cd929258642df (diff) | |
| download | pleroma-94c1f28ba4b333513166a7273e892c7c9cfd4353.tar.gz pleroma-94c1f28ba4b333513166a7273e892c7c9cfd4353.zip | |
Modify sort index for activities.
This prevents a problem that made the local timeline very slow when
there were few posts.
Diffstat (limited to 'priv/repo/migrations')
| -rw-r--r-- | priv/repo/migrations/20180513104714_modify_activity_index.exs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/priv/repo/migrations/20180513104714_modify_activity_index.exs b/priv/repo/migrations/20180513104714_modify_activity_index.exs new file mode 100644 index 000000000..2df530839 --- /dev/null +++ b/priv/repo/migrations/20180513104714_modify_activity_index.exs @@ -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 |
