diff options
author | lain <lain@soykaf.club> | 2019-12-10 13:34:54 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-12-10 13:34:54 +0000 |
commit | 1ae976ac51d5ad7c224fa4d1ddee0bbd007d6787 (patch) | |
tree | 1e0b4fa5d7ca5d12ac2d41ee5a077f669f64fb43 /priv | |
parent | 835ac2157c53e8c85bd3759efe061dbfbdfc367e (diff) | |
parent | 54b1b2c9c0c24165b5b32c352fa684eed28bfa93 (diff) | |
download | pleroma-1ae976ac51d5ad7c224fa4d1ddee0bbd007d6787.tar.gz |
Merge branch 'develop' into '1427-oauth-admin-scopes'
# Conflicts:
# CHANGELOG.md
Diffstat (limited to 'priv')
-rw-r--r-- | priv/repo/migrations/20191123030554_add_activitypub_actor_type.exs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/priv/repo/migrations/20191123030554_add_activitypub_actor_type.exs b/priv/repo/migrations/20191123030554_add_activitypub_actor_type.exs new file mode 100644 index 000000000..76d3b32c4 --- /dev/null +++ b/priv/repo/migrations/20191123030554_add_activitypub_actor_type.exs @@ -0,0 +1,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 |