diff options
author | Tusooa Zhu <tusooa@kazv.moe> | 2022-07-11 16:24:38 -0400 |
---|---|---|
committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-08-20 20:43:47 -0400 |
commit | 4e7ed563c050e3781990e6c62ea5996d61b63d37 (patch) | |
tree | cb172fd924eaeea87babed21a99bc8759129243b | |
parent | 3885ee182a572a10b326ae553703ee0d38f3b66d (diff) | |
download | pleroma-4e7ed563c050e3781990e6c62ea5996d61b63d37.tar.gz |
Lint
-rw-r--r-- | priv/repo/migrations/20220711192750_switch_to_associated_object_id_index.exs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/priv/repo/migrations/20220711192750_switch_to_associated_object_id_index.exs b/priv/repo/migrations/20220711192750_switch_to_associated_object_id_index.exs index c0b89731b..75c1cd40b 100644 --- a/priv/repo/migrations/20220711192750_switch_to_associated_object_id_index.exs +++ b/priv/repo/migrations/20220711192750_switch_to_associated_object_id_index.exs @@ -24,9 +24,7 @@ defmodule Pleroma.Repo.Migrations.SwitchToAssociatedObjectIdIndex do def down do drop_if_exists( - index(:activities, ["associated_object_id(data)"], - name: :activities_create_objects_index - ) + index(:activities, ["associated_object_id(data)"], name: :activities_create_objects_index) ) create( |