summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20191008132427_drop_users_following.exs
blob: 21c0af9f459f9f671f3e1c8a9978f13debc25db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
defmodule Pleroma.Repo.Migrations.DropUsersFollowing do
  use Ecto.Migration

  # had to disable these to be able to restore `following` index concurrently
  # https://hexdocs.pm/ecto_sql/Ecto.Migration.html#index/3-adding-dropping-indexes-concurrently
  @disable_ddl_transaction true
  @disable_migration_lock true

  def change do
    drop(index(:users, [:following], concurrently: true, using: :gin))

    alter table(:users) do
      remove(:following, {:array, :string}, default: [])
    end
  end
end