Basic AP objects.

This commit is contained in:
Roger Braun 2017-03-21 09:21:52 +01:00
commit 8de523c8ae
6 changed files with 69 additions and 0 deletions

9
lib/pleroma/object.ex Normal file
View file

@ -0,0 +1,9 @@
defmodule Pleroma.Object do
use Ecto.Schema
schema "objects" do
field :data, :map
timestamps()
end
end