Oneric
1a4238bf98
All checks were successful
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.
19 lines
385 B
Elixir
19 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
|