diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-02-06 11:33:00 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-02-06 11:33:00 +0700 |
commit | 6f05f448f86a0fdaf3bd04e626f6c311692edbef (patch) | |
tree | e309bb2d6f493f135f9e5fab7411aba0f39b1096 /priv | |
parent | 14d967f515c4a431b8059a19d4b84a83c0f2aa28 (diff) | |
parent | c46490b1999dd0ddb3d3b23409ba725c21811a96 (diff) | |
download | pleroma-6f05f448f86a0fdaf3bd04e626f6c311692edbef.tar.gz pleroma-6f05f448f86a0fdaf3bd04e626f6c311692edbef.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into feature/jobs
Diffstat (limited to 'priv')
-rw-r--r-- | priv/repo/migrations/20190203185340_split_hide_network.exs | 12 | ||||
-rw-r--r-- | priv/repo/migrations/20190204200237_add_correct_dm_index.exs | 30 |
2 files changed, 42 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190203185340_split_hide_network.exs b/priv/repo/migrations/20190203185340_split_hide_network.exs new file mode 100644 index 000000000..9c44e8aff --- /dev/null +++ b/priv/repo/migrations/20190203185340_split_hide_network.exs @@ -0,0 +1,12 @@ +defmodule Pleroma.Repo.Migrations.SplitHideNetwork do + use Ecto.Migration + + def up do + execute("UPDATE users SET info = jsonb_set(info, '{hide_network}'::text[], 'false'::jsonb) WHERE NOT(info::jsonb ? 'hide_network')") + execute("UPDATE users SET info = jsonb_set(info, '{hide_followings}'::text[], info->'hide_network')") + execute("UPDATE users SET info = jsonb_set(info, '{hide_followers}'::text[], info->'hide_network')") + end + + def down do + end +end diff --git a/priv/repo/migrations/20190204200237_add_correct_dm_index.exs b/priv/repo/migrations/20190204200237_add_correct_dm_index.exs new file mode 100644 index 000000000..558732cd2 --- /dev/null +++ b/priv/repo/migrations/20190204200237_add_correct_dm_index.exs @@ -0,0 +1,30 @@ +defmodule Pleroma.Repo.Migrations.AddCorrectDMIndex do + use Ecto.Migration + @disable_ddl_transaction true + + def up do + drop_if_exists( + index(:activities, ["activity_visibility(actor, recipients, data)"], + name: :activities_visibility_index + ) + ) + + create( + index(:activities, ["activity_visibility(actor, recipients, data)", "id DESC NULLS LAST"], + name: :activities_visibility_index, + concurrently: true, + where: "data->>'type' = 'Create'" + ) + ) + end + + def down do + drop( + index(:activities, ["activity_visibility(actor, recipients, data)", "id DESC"], + name: :activities_visibility_index, + concurrently: true, + where: "data->>'type' = 'Create'" + ) + ) + end +end |