diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-01 21:49:18 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-01 21:49:18 +0300 |
commit | 67bcc3ccc433bd5c7b59f5bf1a45db93da93d093 (patch) | |
tree | dc0da1bbaab5f50237c40cf3d74273658e10a80c | |
parent | cfa588e3574f3083798de6f4e0eca63f00aaf578 (diff) | |
download | pleroma-67bcc3ccc433bd5c7b59f5bf1a45db93da93d093.tar.gz |
Remove index on object name used for excluding poll votes (replaced by just rewriting Note to Answer)
-rw-r--r-- | priv/repo/migrations/20190522084924_add_object_index_on_name.exs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/priv/repo/migrations/20190522084924_add_object_index_on_name.exs b/priv/repo/migrations/20190522084924_add_object_index_on_name.exs deleted file mode 100644 index 886e8499e..000000000 --- a/priv/repo/migrations/20190522084924_add_object_index_on_name.exs +++ /dev/null @@ -1,7 +0,0 @@ -defmodule Pleroma.Repo.Migrations.AddObjectIndexOnName do - use Ecto.Migration - - def change do - create(index(:objects, ["(data->'name')"], name: :objects_name_index, using: :gin)) - end -end |