You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
akkoma-cachapa/priv/repo/migrations/20180327175831_actually_dro...

9 lines
206 B

7 years ago
defmodule Pleroma.Repo.Migrations.ActuallyDropLocalIndex do
use Ecto.Migration
def change do
create_if_not_exists(index(:users, [:local]))
drop_if_exists(index("activities", :local))
7 years ago
end
end