summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorHaelwenn <contact+git.pleroma.social@hacktivis.me>2020-12-28 12:02:16 +0000
committerHaelwenn <contact+git.pleroma.social@hacktivis.me>2020-12-28 12:02:16 +0000
commit3966add048fda791e6893540d8304b0e626ab9f4 (patch)
tree3a3da119eb71a0536bd5f23226834dfea634d74a /priv
parentb122b6ffa318af30586f9da0532135959804a6a0 (diff)
Revert "Merge branch 'features/hashtag-column' into 'develop'"
This reverts merge request !2824
Diffstat (limited to 'priv')
-rw-r--r--priv/repo/migrations/20200731165800_add_hashtags_index_to_objects.exs11
1 files changed, 0 insertions, 11 deletions
diff --git a/priv/repo/migrations/20200731165800_add_hashtags_index_to_objects.exs b/priv/repo/migrations/20200731165800_add_hashtags_index_to_objects.exs
deleted file mode 100644
index b78682821..000000000
--- a/priv/repo/migrations/20200731165800_add_hashtags_index_to_objects.exs
+++ /dev/null
@@ -1,11 +0,0 @@
-defmodule Pleroma.Repo.Migrations.AddHashtagsIndexToObjects do
- use Ecto.Migration
-
- def change do
- drop_if_exists(index(:objects, ["(data->'tag')"], using: :gin, name: :objects_tags))
-
- create_if_not_exists(
- index(:objects, ["(data->'hashtags')"], using: :gin, name: :objects_hashtags)
- )
- end
-end