Fix typos

This commit is contained in:
Egor Kislitsyn 2019-10-21 14:56:39 +07:00
parent e37d4b2ddf
commit f726d953d5
No known key found for this signature in database
GPG key ID: 1B49CB15B71E7805

View file

@ -69,19 +69,19 @@ defmodule Pleroma.Repo.Migrations.MigrateFollowingRelationships do
updated_at = now() updated_at = now()
FROM ( FROM (
SELECT SELECT
follwer.id AS follower_id, follower.id AS follower_id,
CASE follwer.local CASE follower.local
WHEN TRUE THEN WHEN TRUE THEN
array_prepend(follwer.follower_address, array_agg(following.follower_address)) array_prepend(follower.follower_address, array_agg(following.follower_address))
ELSE ELSE
array_agg(following.follower_address) array_agg(following.follower_address)
END AS following_array END AS following_array
FROM FROM
following_relationships following_relationships
JOIN users AS follwer ON follwer.id = following_relationships.follower_id JOIN users AS follower ON follower.id = following_relationships.follower_id
JOIN users AS FOLLOWING ON following.id = following_relationships.following_id JOIN users AS following ON following.id = following_relationships.following_id
GROUP BY GROUP BY
follwer.id) AS following_query follower.id) AS following_query
WHERE WHERE
following_query.follower_id = users.id following_query.follower_id = users.id
""" """