76d3b32c4dbc0682e6fd7876688e3be9c7339c4a
[akkoma] / migrations / 20191123030554_add_activitypub_actor_type.exs
1 defmodule Pleroma.Repo.Migrations.AddActivitypubActorType do
2 use Ecto.Migration
3
4 def change do
5 alter table("users") do
6 add(:actor_type, :string, null: false, default: "Person")
7 end
8 end
9 end