diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-10-11 02:35:32 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-10-11 02:35:32 +0700 |
commit | 059005ff829c0313c62ddf5fbcd95f8892920228 (patch) | |
tree | 9c33d41fc3efe721f477aef7daa37b05ba812964 /priv/repo/migrations/20191007073319_create_following_relationships.exs | |
parent | 2c7ff32e5b95926af9b6573a6dc6ea96e3ba7dd5 (diff) | |
download | pleroma-059005ff829c0313c62ddf5fbcd95f8892920228.tar.gz pleroma-059005ff829c0313c62ddf5fbcd95f8892920228.zip |
Replace `user.following` with Pleroma.FollowingRelationship
Diffstat (limited to 'priv/repo/migrations/20191007073319_create_following_relationships.exs')
-rw-r--r-- | priv/repo/migrations/20191007073319_create_following_relationships.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20191007073319_create_following_relationships.exs b/priv/repo/migrations/20191007073319_create_following_relationships.exs index 7daaf0575..d49e24ee4 100644 --- a/priv/repo/migrations/20191007073319_create_following_relationships.exs +++ b/priv/repo/migrations/20191007073319_create_following_relationships.exs @@ -16,7 +16,7 @@ defmodule Pleroma.Repo.Migrations.CreateFollowingRelationships do execute(update_thread_visibility(), restore_thread_visibility()) end - # The only difference with the original verion: `actor_user` replaced with `actor_user_following` + # The only difference between the original version: `actor_user` replaced with `actor_user_following` def update_thread_visibility do """ CREATE OR REPLACE FUNCTION thread_visibility(actor varchar, activity_id varchar) RETURNS boolean AS $$ |