Add ability to set a default post expiry (#321)
[akkoma] / priv / repo / 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