akkoma/priv/repo/migrations/20171109091239_add_actor_to_activity.exs

22 lines
438 B
Elixir
Raw Normal View History

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