clean sql query

stable
Maksim Pechnikov 5 years ago
parent ff6c727739
commit ddbfc995ac

@ -56,7 +56,7 @@ defmodule Pleroma.Marker do
|> Multi.insert(
:marker,
fn %{counters: attrs} ->
Marker
%Marker{timeline: "notifications", user_id: user.id}
|> struct(attrs)
|> Ecto.Changeset.change()
end,

@ -41,8 +41,6 @@ defmodule Pleroma.Notification do
from(q in Pleroma.Notification,
where: q.user_id == ^user.id,
select: %{
timeline: "notifications",
user_id: type(^user.id, :string),
unread_count: fragment("SUM( CASE WHEN seen = false THEN 1 ELSE 0 END )"),
last_read_id:
type(fragment("MAX( CASE WHEN seen = true THEN id ELSE null END )"), :string)

Loading…
Cancel
Save