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

21 lines
433 B
Elixir
Raw 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
add :actor, :string
end
create index(:activities, [:actor, "id DESC NULLS LAST"], concurrently: true)
end
def down do
2019-07-01 03:08:07 +02:00
drop_if_exists index(:activities, [:actor, "id DESC NULLS LAST"])
2017-11-09 10:41:19 +01:00
alter table(:activities) do
remove :actor
end
end
end