akkoma/priv/repo/migrations/20171109091239_add_actor_to_activity.exs
Oneric 1a4238bf98 cosmetic: fix concurrent index creation warnings
Since those old migrations will now most likely only run during db init,
there’s not much point in running them in the background concurrently
anyway, so just drop the cncurrent setting rather than disabling
migration locks.
2024-06-19 02:25:23 +02:00

20 lines
385 B
Elixir

defmodule Pleroma.Repo.Migrations.AddActorToActivity do
use Ecto.Migration
def up do
alter table(:activities) do
add(:actor, :string)
end
create(index(:activities, [:actor, "id DESC NULLS LAST"]))
end
def down do
drop_if_exists(index(:activities, [:actor, "id DESC NULLS LAST"]))
alter table(:activities) do
remove(:actor)
end
end
end