Add actor column to activities.

This commit is contained in:
Roger Braun 2017-11-09 10:41:19 +01:00
commit f1d27a5fbb
5 changed files with 32 additions and 5 deletions

View file

@ -0,0 +1,24 @@
defmodule Pleroma.Repo.Migrations.AddActorToActivity do
use Ecto.Migration
@disable_ddl_transaction true
def up do
alter table(:activities) do
add :actor, :string
end
execute """
update activities set actor = data->>'actor';
"""
create index(:activities, [:actor, "id DESC NULLS LAST"], concurrently: true)
end
def down do
drop index(:activities, [:actor, "id DESC NULLS LAST"])
alter table(:activities) do
remove :actor
end
end
end