1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-25 15:09:34 +00:00
akkoma/priv/repo/migrations/20171109091239_add_actor_to_activity.exs

20 lines
385 B
Elixir
Raw Normal View History

2017-11-09 10:41:19 +01:00
defmodule Pleroma.Repo.Migrations.AddActorToActivity do
use Ecto.Migration
def up do
alter table(:activities) do
2019-10-08 15:16:39 +03:00
add(:actor, :string)
2017-11-09 10:41:19 +01:00
end
create(index(:activities, [:actor, "id DESC NULLS LAST"]))
2017-11-09 10:41:19 +01:00
end
def down do
2019-10-08 15:16:39 +03: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 15:16:39 +03:00
remove(:actor)
2017-11-09 10:41:19 +01:00
end
end
end