diff options
| author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-03-30 19:08:37 +0300 |
|---|---|---|
| committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2020-03-30 19:08:37 +0300 |
| commit | 9c94b6a327118d8c7ea21355d6c378ef31c54321 (patch) | |
| tree | 5a516d7320c4183dfdb8d4381cf78d3a7db0c908 /priv | |
| parent | be9d18461a5ed6bd835e2eba8d3b54ba61fc51fb (diff) | |
| download | pleroma-9c94b6a327118d8c7ea21355d6c378ef31c54321.tar.gz pleroma-9c94b6a327118d8c7ea21355d6c378ef31c54321.zip | |
[#2332] Misc. fixes per code change requests.
Diffstat (limited to 'priv')
| -rw-r--r-- | priv/repo/migrations/20200328130139_add_following_relationships_following_id_index.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20200328130139_add_following_relationships_following_id_index.exs b/priv/repo/migrations/20200328130139_add_following_relationships_following_id_index.exs index 4c9faf48f..884832f84 100644 --- a/priv/repo/migrations/20200328130139_add_following_relationships_following_id_index.exs +++ b/priv/repo/migrations/20200328130139_add_following_relationships_following_id_index.exs @@ -6,6 +6,6 @@ defmodule Pleroma.Repo.Migrations.AddFollowingRelationshipsFollowingIdIndex do def change do drop_if_exists(index(:following_relationships, [:follower_id])) - create_if_not_exists(drop_if_exists(index(:following_relationships, [:following_id]))) + create_if_not_exists(index(:following_relationships, [:following_id])) end end |
