summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20191123030554_add_activitypub_actor_type.exs
blob: 76d3b32c4dbc0682e6fd7876688e3be9c7339c4a (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddActivitypubActorType do
  use Ecto.Migration

  def change do
    alter table("users") do
      add(:actor_type, :string, null: false, default: "Person")
    end
  end
end