Pleroma/priv/repo/migrations/20171109091239_add_actor_to...

22 lines
438 B
Elixir
Raw Permalink Normal View History

2017-11-09 10:41:19 +01:00
defmodule Pleroma.Repo.Migrations.AddActorToActivity do
use Ecto.Migration
@disable_ddl_transaction true
def up do
alter table(:activities) do
2019-10-08 14:16:39 +02:00
add(:actor, :string)
2017-11-09 10:41:19 +01:00
end
2019-10-08 14:16:39 +02:00
create(index(:activities, [:actor, "id DESC NULLS LAST"], concurrently: true))
2017-11-09 10:41:19 +01:00
end
def down do
2019-10-08 14:16:39 +02:00
drop_if_exists(index(:activities, [:actor, "id DESC NULLS LAST"]))
2017-11-09 10:41:19 +01:00
alter table(:activities) do
2019-10-08 14:16:39 +02:00
remove(:actor)
2017-11-09 10:41:19 +01:00
end
end
end