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

@ -6,6 +6,7 @@ defmodule Pleroma.Activity do
schema "activities" do
field :data, :map
field :local, :boolean, default: true
field :actor, :string
has_many :notifications, Notification
timestamps()