1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-25 04:53:06 +00:00
akkoma/priv/repo/migrations/20180327175831_actually_drop_local_index.exs

9 lines
206 B
Elixir
Raw Normal View History

2018-03-27 18:59:54 +01:00
defmodule Pleroma.Repo.Migrations.ActuallyDropLocalIndex do
use Ecto.Migration
def change do
2019-10-08 13:16:39 +01:00
create_if_not_exists(index(:users, [:local]))
drop_if_exists(index("activities", :local))
2018-03-27 18:59:54 +01:00
end
end