diff options
author | lain <lain@soykaf.club> | 2020-05-08 13:13:37 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-08 13:13:37 +0200 |
commit | 7637ef42033b2da79ca61e9dee8fb4187d1a8257 (patch) | |
tree | 9b42481388e596d5b5c24a8e3fd22fcdcd69bb46 /priv | |
parent | fb2d284d2897e8b789da4f81ae8d288373d2bf76 (diff) | |
parent | fbcc53760e6fcd393513c05a5bd7a4a6a6f3b731 (diff) | |
download | pleroma-7637ef42033b2da79ca61e9dee8fb4187d1a8257.tar.gz pleroma-7637ef42033b2da79ca61e9dee8fb4187d1a8257.zip |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into remake-remodel-dms
Diffstat (limited to 'priv')
-rw-r--r-- | priv/repo/migrations/20200415181818_update_markers.exs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200415181818_update_markers.exs b/priv/repo/migrations/20200415181818_update_markers.exs new file mode 100644 index 000000000..976363565 --- /dev/null +++ b/priv/repo/migrations/20200415181818_update_markers.exs @@ -0,0 +1,40 @@ +defmodule Pleroma.Repo.Migrations.UpdateMarkers do + use Ecto.Migration + import Ecto.Query + alias Pleroma.Repo + + def up do + update_markers() + end + + def down do + :ok + end + + defp update_markers do + now = NaiveDateTime.utc_now() + + markers_attrs = + from(q in "notifications", + select: %{ + timeline: "notifications", + user_id: q.user_id, + last_read_id: + type(fragment("MAX( CASE WHEN seen = true THEN id ELSE null END )"), :string) + }, + group_by: [q.user_id] + ) + |> Repo.all() + |> Enum.map(fn %{last_read_id: last_read_id} = attrs -> + attrs + |> Map.put(:last_read_id, last_read_id || "") + |> Map.put_new(:inserted_at, now) + |> Map.put_new(:updated_at, now) + end) + + Repo.insert_all("markers", markers_attrs, + on_conflict: {:replace, [:last_read_id]}, + conflict_target: [:user_id, :timeline] + ) + end +end |